-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
26 lines (25 loc) · 831 Bytes
/
settings.js
File metadata and controls
26 lines (25 loc) · 831 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
26
module.exports = {
express:{
port:process.env.PORT || 80
},
facebookAuth: {
FACEBOOK_APP_ID:"397459757339390",
FACEBOOK_APP_SECRET:"2e1bb38c2dfa65b7cf06770ab24da0da",
},
stringIDgenerator: {
length: 12
},
mongoDb :{
username: "MeetMe",
password: "nXhpkTPoQmpJsWPS",
dbName: "MeetMe",
getConnectionString: function(){
return "mongodb://"+this.username+":"+ this.password +"@meetme-shard-00-00-u195e.mongodb.net:27017,meetme-shard-00-01-u195e.mongodb.net:27017,meetme-shard-00-02-u195e.mongodb.net:27017/"+this.dbName+"?ssl=true&replicaSet=MeetMe-shard-0&authSource=admin"
}
},
redis: {
port:13185,
host:"redis-13185.c6.eu-west-1-1.ec2.cloud.redislabs.com",
password:"Win$4ever"
}
};