forked from TwilioDevEd/automated-survey-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
30 lines (30 loc) · 966 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
{
"name": "Automated surveys with Django",
"description": "Perform automated phone surveys with Twilio, TwiML, Python and Django",
"keywords": [
"twilio",
"surveys",
"django",
"python"
],
"scripts": {
"postdeploy": "python manage.py migrate"
},
"addons": ["heroku-postgresql:hobby-dev"]
,
"env": {
"SECRET_KEY": {
"description": "App key for Django",
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "Instructs our app to use the production settings module",
"value": "twilio_sample_project.settings.production",
"required": true
}
},
"website": "https://github.com/TwilioDevEd/automated-survey-django",
"repository": "https://github.com/TwilioDevEd/automated-survey-django",
"logo": "https://s3.amazonaws.com/howtodocs/twilio-logo.png",
"success_url": "/"
}