-
Notifications
You must be signed in to change notification settings - Fork 57
/
app.json
41 lines (41 loc) · 1.41 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
35
36
37
38
39
40
41
{
"name": "Appointment Reminders (Django)",
"description": "Appointment Reminders in Django with Twilio",
"repository": "https://github.com/TwilioDevEd/appointment-reminders-django",
"keywords": [
"sms", "phone", "twilio", "appointment reminders", "automation", "django", "dramatiq"
],
"addons": [
"redistogo:nano"
],
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "Your Twilio account secret ID, you can find at: https://www.twilio.com/user/account",
"value": "enter_your_account_sid_here",
"required": true
},
"TWILIO_AUTH_TOKEN": {
"description": "Your secret Twilio Auth token, you can find at: https://www.twilio.com/user/account",
"value": "enter_your_auth_token_here",
"required": true
},
"TWILIO_PHONE_NUMBER": {
"description": "The Twilio phone number you are using for this app. You can get one here: https://www.twilio.com/user/account/phone-numbers/incoming",
"value": "+15005550006",
"required": true
},
"DJANGO_SETTINGS_MODULE": {
"description": "Instructs our app to use the production settings module",
"value": "appointments.settings.production",
"required": true
},
"DJANGO_SECRET_KEY": {
"description": "A unique, unpredictable key for your Django app",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "python manage.py migrate"
},
"success_url": "/"
}