debug produciton db connection
This commit is contained in:
parent
c59f7df174
commit
4aed7bbd81
2 changed files with 3 additions and 3 deletions
|
@ -1,2 +1,2 @@
|
|||
web: npm start
|
||||
release: npm migrate
|
||||
release: npm run migrate
|
|
@ -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',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue