mirror of
https://github.com/docker-training/node-bulletin-board.git
synced 2025-05-18 03:49:31 +08:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
var dbConfig = module.exports = {};
|
|
|
|
dbConfig.connection = {
|
|
username: 'postgres',
|
|
password: 'DockerCon!!!',
|
|
host: 'bb-db',
|
|
post: 5432,
|
|
dbName: 'postgres'
|
|
};
|
|
|
|
dbConfig.pool = {
|
|
max: 10
|
|
}; |