journey/server/config/postgres.js
Linus Miller 6048991b2d new config loading logic
- remove unused config files
- load all server env variables from ./config/env
- still define PWD as midwest seems to be using it
2020-08-28 20:48:22 +02:00

14 lines
210 B
JavaScript

'use strict'
const env = require('./env')
module.exports = {
database: 'journey',
user: 'journey',
password: 'journey',
host: env.POSTGRES_HOST,
port: 5432,
idleTimeoutMillis: 30000,
max: 10,
}