UNPKG

829 BJSONView Raw
1{
2 "enableCluster": false,
3 "theme": "default",
4 "port" : 8080,
5 "domain": "localhost",
6 "proto" : "http",
7 "dataDir" : "data",
8 "auth" : {
9 "facebook": {
10 "appID": "",
11 "appSecret": ""
12 },
13 "google":{
14 "clientID": "",
15 "clientSecret": ""
16 }
17 },
18 "session":{
19 "store" : false,
20 "secret": "key1234",
21 "options":{
22 "prefix": "shelloid_"
23 }
24 },
25 "databases":{
26 "cache" : {
27 "ignore" : true,
28 "type": "redis",
29 "password": "",
30 "host" : "localhost"
31 },
32 "invitedb" : {
33 "ignore" : true,
34 "type": "mysql",
35 "user": "root",
36 "password": "",
37 "host" : "localhost",
38 "database": "",
39 "maxConnections": 20,
40 "timezone": "local"
41 }
42 },
43 "app":{
44 "sampleUser": "user",
45 "samplePass" : "pass",
46 "apiKeys":{
47 "key1" : "secret1"
48 }
49 }
50}
51