DATABASE_URL = "postgres://YourUserName:YourPassword@localHost:5432/YourDatabaseName";
PG_URI=postgres://postgres:root@localhost:5432/campus
// Specify URL for the PostgreSQL database:
// jdbc:postgresql://<hostname>:<port>/<databasename>
String url = "jdbc:postgresql://localhost:5432/test"
// Specify URL for the MySQL database:
// jdbc:mysql://<hostname>:<port>/<databasename>
String url = "jdbc:mysql://localhost:3306/dinosaurs"