UNPKG

401 BJavaScriptView Raw
1module.exports = {
2 development: {
3 client: "postgresql",
4 connection: {
5 database: "test",
6 user: "postgres",
7 password: "root"
8 },
9 pool: {
10 max: 10,
11 min: 2
12 }
13 },
14
15 production: {
16 client: "postgresql",
17 connection: {
18 database: "test",
19 password: "root",
20 user: "postgres"
21 },
22 pool: {
23 max: 10,
24 min: 2
25 }
26 }
27};