-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
40 lines (40 loc) · 1.47 KB
/
app.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
{
"name": "collaborative-code-coference",
"description": "Setup a collaborative coding session with one click -- audio, video, shared coding",
"keywords": [
"video conference",
"video",
"conference",
"web conference",
"webrtc",
"hangout",
"webex"
],
"website": "https://github.com/crcastle/collaborative-code-coference",
"repository": "https://github.com/crcastle/collaborative-code-coference",
"logo": "https://raw.githubusercontent.com/crcastle/collaborative-code-conference/master/build/client/img/codie.png",
"success_url": "/",
"addons": [],
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "Twilio AccountSID - find here https://www.twilio.com/user/account/settings",
"value": ""
},
"TWILIO_API_KEY": {
"description": "Twilio Video API Key SID - generate this and the next value here https://www.twilio.com/user/account/video/dev-tools/api-keys",
"value": ""
},
"TWILIO_API_SECRET": {
"description": "Twilio API authentication secret - you should have copied this value from the same place as the previous value",
"value": ""
},
"TWILIO_CONFIGURATION_SID": {
"description": "Twilio configuration RTC Profile ID - generate one here https://www.twilio.com/user/account/video/profiles",
"value": ""
},
"LOG_LEVEL": {
"description": "Verbosity of log messages. From most verbose, trace -> debug -> info -> warn -> error, least verbose",
"value": "info"
}
}
}