This is the persistent Postgres database that we were talking about last time we met up.
This branch uses the config var provided by Heroku called JDBC_DATABASE_URL. This is the url for our production database. The URL is a combination of host, username, password, and port. The username and password are changed a few times a year so I used the Heroku's auto-updating config var instead of hardcoding the database URL. This also works to our advantage that we can change the value of the env var through Gradle in tests and leave it unchanged in production.
This is the persistent Postgres database that we were talking about last time we met up.
This branch uses the config var provided by Heroku called
JDBC_DATABASE_URL
. This is the url for our production database. The URL is a combination of host, username, password, and port. The username and password are changed a few times a year so I used the Heroku's auto-updating config var instead of hardcoding the database URL. This also works to our advantage that we can change the value of the env var through Gradle in tests and leave it unchanged in production.