File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 11module . exports = {
22 //database user's name
33 user : process . env . USER ,
4+
45 //name of database to connect
56 database : process . env . USER ,
7+
68 //database user's password
79 password : null ,
10+
811 //database port
912 port : 5432 ,
13+
1014 //number of rows to return at a time from a prepared statement's
1115 //portal. 0 will return all rows at once
1216 rows : 0 ,
17+
1318 //number of connections to use in connection pool
1419 //0 will disable connection pooling
1520 poolSize : 10 ,
16- //duration of node-pool timeout
21+
22+ //max milliseconds a client can go unused before it is removed
23+ //from the pool and destroyed
1724 poolIdleTimeout : 30000 ,
25+
26+ //frequeny to check for idle clients within the client pool
27+ reapIntervalMillis : 1000 ,
28+
1829 // binary result mode
1930 binary : false
2031}
You can’t perform that action at this time.
0 commit comments