-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathapp.json
23 lines (23 loc) · 858 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
{
"name": "Twilio STUN/TURN",
"description": "A template for web server with API endpoint to get Twilio STUN/TURN data",
"keywords": ["node", "express", "twilio", "stun", "turn", "webrtc", "ice servers"],
"success_url": "/",
"repository": "https://github.com/hashobject/twilio-stun-turn",
"addons": [],
"env": {
"NODE_ENV": "production",
"TWILIO_ACCOUNT_SID": {
"description": "Your Twilio Account SID (find it on https://www.twilio.com/user/account/settings)",
"required": true
},
"TWILIO_AUTH_TOKEN": {
"description": "Your Twilio Auth Token (find it on https://www.twilio.com/user/account/settings)",
"required": true
},
"ALLOWED_ORIGIN": {
"description": "Allowed origin to request / endpoint (see https://www.npmjs.com/package/express-cors for options)",
"value": "*"
}
}
}