-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
25 lines (16 loc) · 722 Bytes
/
Copy pathconfig.js
File metadata and controls
25 lines (16 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var config = {};
config.web = {};
config.web.port = process.env.PORT || 80;
config.mongodb = {};
config.mongodb.url = 'mongodb://admin:test@ds061701.mongolab.com:61701/nodejs-express-auth';
//config.redis = {};
//config.default_stuff = ['red','green','blue','apple','yellow','orange','politics'];
//config.twitter.user_name = process.env.TWITTER_USER || 'username';
//config.twitter.password= process.env.TWITTER_PASSWORD || 'password';
//config.redis.uri = process.env.DUOSTACK_DB_REDIS;
config.admin = {};
config.admin.firstname = 'Shin';
config.admin.lastname = 'Zhuang';
config.admin.email = 'kevin@kevin.com';
config.admin.password = 'test123';
module.exports = config;