-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 1.03 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
{
"name": "Call Your Representatvies",
"description": "Twilio-powered app to locate and call your represenatives from the browser.",
"repository": "https://github.com/public-engineering/call-your-representatives_heroku/",
"logo": "https://www.pngitem.com/pimgs/m/217-2172854_transparent-telephone-icon-png-phone-vector-icon-png.png",
"keywords": ["python", "flask", "twilio"],
"buildpacks": [
{
"url":"https://github.com/heroku/heroku-buildpack-python"
}
],
"env": {
"TWILIO_SID": {
"description": "Twilio string ID for account.",
"required": true
},
"TWILIO_TWIML_SID": {
"description": "Twilio string ID for your TwiML app.",
"required": true
},
"TWILIO_TOKEN": {
"description": "Twilio API token for account.",
"required": true
},
"NUMBERS_OUTBOUND": {
"description": "Outgoing phone number for your Twilio app.",
"required": true
},
"GOOGLE_API_KEY": {
"description": "Google Civic API Key",
"required": true
}
}
}