-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config-release.js
49 lines (49 loc) · 1.32 KB
/
Config-release.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module.exports = {
"db": {
"mongodb": "mongodb://api:[email protected]:35787/shopwithme",
"sequelize": {
HOST: "localhost",
USER: "root",
PASSWORD: "arotbarD!053450",
DB: "betPool",
dialect: "mysql",
pool: {
max: 5,
min: 0,
acquire: 30000,
idle: 10000
}
}
},
"bots": {
"crowd": {
"email" : "[email protected]",
"username": "[email protected]",
"firstName": "Crowd",
"lastName": "bot",
"password": "Aa123456"
}
},
// 'facebookAuth' : {
// 'clientID' : 'your-clientID-here',
// 'clientSecret' : 'your-client-secret-here',
// 'callbackURL' : 'http://localhost:3000/api/auth/facebook/callback',
// 'profileURL': 'https://graph.facebook.com/v2.5/me?fields=first_name,last_name,email'
//
// },
//
// 'twitterAuth' : {
// 'consumerKey' : 'your-consumer-key-here',
// 'consumerSecret' : 'your-client-secret-here',
// 'callbackURL' : 'http://localhost:3000/auth/twitter/callback'
// },
// 'googleAuth' : {
// 'clientID' : 'your-clientID-here',
// 'clientSecret' : 'your-client-secret-here',
// 'callbackURL' : 'http://localhost:3000/auth/google/callback'
// },
"logger": {
"api": "logs/api.log",
"exception": "logs/exceptions.log"
}
};