-
Notifications
You must be signed in to change notification settings - Fork 57
/
app.json
36 lines (36 loc) · 928 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
30
31
32
33
34
35
36
{
"name": "Twilio Mobile Quickstart",
"description": "A simple Python server to distribute access tokens and route calls for your mobile app",
"repository": "https://github.com/twilio/voice-quickstart-server-python",
"keywords": [
"twilio",
"voice",
"mobile"
],
"env": {
"ACCOUNT_SID": {
"description": "Your Twilio Account Sid",
"required": true
},
"API_KEY": {
"description": "Your Twilio API Key",
"required": true
},
"API_KEY_SECRET": {
"description": "Your Twilio API Key Secret",
"required": true
},
"PUSH_CREDENTIAL_SID": {
"description": "Your Twilio Push Credential Sid",
"required": true
},
"APP_SID": {
"description": "Your TwiML App Sid that points to this web server",
"required": true
},
"AUTH_TOKEN": {
"description": "Your Twilio Auth Token",
"required": true
}
}
}