-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
29 lines (29 loc) · 815 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": "Twilio Mobile Quickstart",
"description": "A simple Python server to distribute capability tokens and route calls for your mobile app",
"repository": "https://github.com/vassjozsef/mobile-quickstart",
"logo": "https://static1.twilio.com/packages/company/img/logos_icon_round.png",
"keywords": [
"twilio",
"client",
"mobile"
],
"env": {
"ACCOUNT_SID": {
"description": "Your Twilio Account Sid",
"required": true
},
"AUTH_TOKEN": {
"description": "Your Twilio Auth Token",
"required": true
},
"APP_SID": {
"description": "Your TwiML App Sid that points to this web server",
"required": true
},
"CALLER_ID": {
"description": "Phone number verified with your Twilio Account",
"required": true
}
}
}