debug produciton db connection

This commit is contained in:
Sorrel Bri 2020-01-09 16:29:20 -08:00
parent 592c44ebb8
commit f7990fffd9
2 changed files with 3 additions and 3 deletions

View file

@ -1,2 +1,2 @@
web: npm start
release: npm migrate
release: npm run migrate

View file

@ -15,7 +15,7 @@ module.exports = {
staging: {
client: 'postgresql',
connection: process.env.PG_CONNECTION_STRING,
connection: process.env.DATABASE_URL,
migrations: {
directory: './data/migrations',
},
@ -28,7 +28,7 @@ module.exports = {
production: {
client: 'postgresql',
connection: process.env.PG_CONNECTION_STRING,
connection: process.env.DATABASE_URL,
migrations: {
directory: './data/migrations',
},