blob: 9118d6c3b7e587abdc66977108561810444bc20b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
module.exports = {
// The name of the database
database: 'WelfareSchemes',
// The username used to connect to the database
username: 'postgres',
// The password used to connect to the database
password: 'lucifer',
// The dialect of the database you are connecting to
dialect: 'postgres',
// The host of the database
host: 'localhost',
// The port of the database
port: 5432,
// Setup pool of connections to the database
pool: {
max: 5,
min: 0,
acquire: 30000,
idle: 10000
}
};
|