UNPKG

864 BJSONView Raw
1{
2 "enableCluster": true,
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 "note": "Set up redis and set store to 'cache' to enable sessions.",
20 "store" : false,
21 "secret": "key1234",
22 "options":{
23 "prefix": "shelloid_"
24 }
25 },
26 "databases":{
27 "cache" : {
28 "ignore": true,
29 "type": "redis",
30 "password": "",
31 "host" : "localhost"
32 },
33 "invitedb" : {
34 "ignore": true,
35 "type": "mysql",
36 "user": "root",
37 "password": "",
38 "host" : "localhost",
39 "database": "",
40 "maxConnections": 20,
41 "timezone": "local"
42 }
43 },
44 "app":{
45 "sampleUser": "",
46 "samplePass" : "",
47 "apiKeys" :{}
48 }
49}
50