jdbc.default.driverClassName=org.postgresql.Driver jdbc.default.url= jdbc:postgresql://localhost:5432/lportal jdbc.default.username=postgres jdbc.default.password=postgres code example
Example 1: database url postgres
DATABASE_URL = "postgres://YourUserName:YourPassword@localHost:5432/YourDatabaseName";
Example 2: postgresql database url
PG_URI=postgres://postgres:root@localhost:5432/campus