-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
47 lines (47 loc) · 911 Bytes
/
Copy pathconfig.example.json
File metadata and controls
47 lines (47 loc) · 911 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"mode": "dev",
"useHTTPS": false,
"app": {
"host": "http://localhost",
"port": 3000,
"session_secret": "perdays"
},
"authGoogle": {
"ID": "ID",
"SECRET": "SECRET",
"callbackURL": "http://localhost:3000/api/auth/google/return"
},
"authGitHub": {
"ID": "ID",
"SECRET": "SECRET",
"callbackURL": "http://localhost:3000/api/auth/github/callback"
},
"authTwitter": {
"ID": "ID",
"SECRET": "SECRET",
"callbackURL": "http://localhost:3000/api/auth/twitter/callback"
},
"db": {
"prod": {
"name": "prod",
"host": "localhost",
"port": "",
"user": "",
"pw": ""
},
"dev": {
"name": "perdays",
"host": "localhost",
"port": "",
"user": "",
"pw": ""
},
"test": {
"name": "specs",
"host": "localhost",
"port": "",
"user": "",
"pw": ""
}
}
}