Files: d33feed5f3b157fa00d79dd0c4297c6e10eaf539 / config / development.js
274 bytesRaw
1 | const join = require('path').join |
2 | |
3 | module.exports = { |
4 | db: { |
5 | client: 'pg', |
6 | connection: { |
7 | host : 'localhost', |
8 | user : 'postgres', |
9 | //password : 'postgres', |
10 | database : 'postgres' |
11 | }, |
12 | pool: { |
13 | min: 0, |
14 | max: 1 |
15 | } |
16 | } |
17 | } |
18 |
Built with git-ssb-web