-
Notifications
You must be signed in to change notification settings - Fork 108
/
app.json
29 lines (29 loc) · 864 Bytes
/
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
{
"name": "OpenTokRTC",
"description": "OpenTok RTC sample application to show off the OpenTok API and platform capabilities ",
"keywords": [
"WebRTC",
"HTML5",
"productivity"
],
"website": "https://tokbox.com/",
"repository": "https://github.com/opentok/opentok-rtc.git",
"logo": "https://tokbox.com/developer/img/OT_logo.png",
"success_url": "/",
"scripts": {
"postdeploy": "bower install && grunt clientBuild"
},
"env": {
"TB_API_KEY": {
"description": "OpenTok API key: Login to the Tokbox Dashboard (https://dashboard.tokbox.com/keys) to get this value.",
"required": true
},
"TB_API_SECRET": {
"description": "OpenTok API secret: Login to the Tokbox Dashboard (https://dashboard.tokbox.com/keys) to get this value.",
"required": true
}
},
"addons": [
"heroku-redis"
]
}