You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
204 B
12 lines
204 B
4 years ago
|
var config = {};
|
||
|
|
||
|
config.mongo = {};
|
||
|
config.redis = {};
|
||
|
|
||
|
config.mongo.user = 'user1'
|
||
|
config.mongo.password= 'pass1'
|
||
|
config.redis.host = 'redisserver';
|
||
|
config.redis.port = 6379;
|
||
|
|
||
|
module.exports = config;
|