14 lines
569 B
JavaScript
14 lines
569 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
database: 'stack_trace_mapper', // process.env.NODE_ENV var: PGDATABASE
|
|
user: 'stack_trace_mapper',
|
|
password: 'thesesourcemapsaregoingtochangetheworld',
|
|
// host: 'hq.bitmill.co', // Server hosting the postgres database
|
|
host: 'localhost', // Server hosting the postgres database
|
|
// port: 6543, // process.env.NODE_ENV var: PGPORT
|
|
port: 5432, // process.env.NODE_ENV var: PGPORT
|
|
max: 10, // max number of clients in the pool
|
|
idleTimeoutMillis: 30000, // how long a client is allowed to remain idle before being closed
|
|
}
|