-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
59 lines (59 loc) · 1.37 KB
/
config.json
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
50
51
52
53
54
55
56
57
58
59
{
"development": {
"port": 3000,
"name": "Stevens Scheduler 2.0",
"server": "http://localhost:3000",
"session": {
"secret": "cats"
},
"mongo": {
"serverUri": "mongodb://localhost:27017",
"database": "stevens-scheduler-2"
},
"auth": {
"google": {
"clientID": "421605880449-ob4g7b2sopkmvvkgrm0lsfept9c7m3cb.apps.googleusercontent.com"
}
}
},
"production": {
"port": 3000,
"name": "Stevens Scheduler 2.0",
"server": "",
"session": {
"secret": "dogs"
},
"mongo": {
"serverUri": "mongodb://localhost:27017",
"database": "stevens-scheduler-2"
},
"logs": {
"accessFilename": "access.log",
"errorFilename": "errors.log",
"databaseFilename": "db.log",
"consoleFilename": "console.log"
},
"auth": {
"google": {
"clientID": "421605880449-ob4g7b2sopkmvvkgrm0lsfept9c7m3cb.apps.googleusercontent.com"
}
}
},
"testing": {
"port": 3001,
"name": "Stevens Scheduler 2.0",
"server": "http://localhost:3001",
"session": {
"secret": "pickles"
},
"mongo": {
"serverUri": "mongodb://localhost:27017",
"database": "test-stevens-scheduler-2"
},
"auth": {
"google": {
"clientID": "421605880449-ob4g7b2sopkmvvkgrm0lsfept9c7m3cb.apps.googleusercontent.com"
}
}
}
}