postgres local connection string code example
Example 1: postgres connection string
postgres://YourUserName:YourPassword@YourHostname:5432/YourDatabaseName
Example 2: database url postgres
DATABASE_URL = "postgres://YourUserName:YourPassword@localHost:5432/YourDatabaseName";
Example 3: postgresql database url
PG_URI=postgres://postgres:root@localhost:5432/campus