UNPKG

1.06 kBJSONView Raw
1{
2 "enableCluster": false,
3 "theme": "default",
4 "port" : 8080,
5 "domain": "localhost",
6 "proto" : "http",
7 "dataDir" : "data",
8 "ccs": {
9 "enable": true,
10 "services": ["add"]
11 },
12 "auth" : {
13 "nest": {
14 "nestID": "",
15 "nestSecret": ""
16 },
17 "facebook": {
18 "appID": "",
19 "appSecret": ""
20 },
21 "google":{
22 "clientID": "",
23 "clientSecret": ""
24 }
25 },
26 "session":{
27 "store" : false,
28 "secret": "key1234",
29 "options":{
30 "prefix": "shelloid_"
31 }
32 },
33 "databases":{
34 "streamdb":{
35 "ignore" : true,
36 "type" : "mongodb",
37 "url": "mongodb://localhost/streamdb"
38 },
39 "cache" : {
40 "ignore" : true,
41 "type": "redis",
42 "password": "",
43 "host" : "localhost"
44 },
45 "invitedb" : {
46 "ignore" : true,
47 "type": "mysql",
48 "user": "root",
49 "password": "",
50 "host" : "localhost",
51 "database": "",
52 "maxConnections": 20,
53 "timezone": "local"
54 }
55 },
56 "app":{
57 "sampleUser": "user",
58 "samplePass" : "pass",
59 "apiKeys":{
60 "key1" : "secret1"
61 }
62 }
63}
64