forked from hiitlabs/live-participation-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-defaults.json
75 lines (75 loc) · 1.49 KB
/
config-defaults.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"HOSTNAME": "localhost",
"TRUST_PROXY": true,
"DISPLAY_URL": "localhost/dev",
"PORT": "3000",
"SITEROUTE": "dev",
"COOKIEKEY": "io",
"COOKIESECRET": "-----",
"SITELANG": "en",
"CONTROLPIN": "",
"SHOW_CSV_EXPORT": true,
"USERPIN": false,
"USERNAMES": true,
"UNIQUE_USERNAMES": true,
"POINTS": false,
"USERLIST": false,
"NETWORKING": false,
"EDITING": false,
"REPLYING": false,
"ONE_MSG": true,
"NOTIFYWRITING": false,
"INVERTING": false,
"SHOWRATINGSTATS": true,
"MEANVAR": false,
"SHOW_PICK_BUTTONS": true,
"SCREEN_IMAGE": "",
"FOOTER_IMAGE": "",
"FOOTER_IMAGE_CLASS": "center-block",
"CONNECT_TWITTER": false,
"BUILT_BLOCKTYPES": [
"core", "chat", "poll", "pollplus", "rating", "scatter"
],
"BUILT_CHANNELTYPES": [
"screen",
"control",
"stage",
"web"
],
"MAIN_CHANNEL": "web",
"VISIBLE_BLOCKTYPES": [
"chat", "poll", "pollplus", "rating", "scatter"
],
"DEFAULT_BLOCKINSTANCES": [
{
"id": "core",
"type": "core"
}
],
"DEFAULT_CHANNELINSTANCES": [
{
"id": "screen",
"type": "screen",
"route": "screen",
"title": "Presemo Screen"
},
{
"id": "control",
"type": "control",
"route": "control",
"title": "Presemo Control"
},
{
"id": "stage",
"type": "stage",
"route": "stage",
"title": "Presemo Stage"
},
{
"id": "web",
"type": "web",
"route": "web",
"title": "Presemo"
}
]
}