forked from monty5811/apostello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
56 lines (56 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "apostello",
"description": "SMS communication software for your church",
"keywords": [
"sms",
"twilio",
"django"
],
"website": "https://github.com/monty5811/apostello",
"repository": "https://github.com/monty5811/apostello",
"success_url": "/",
"scripts": {
"postdeploy": "./manage.py migrate && ./manage.py setup_periodic_tasks"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"env": {
"DJANGO_SETTINGS_MODULE": "settings.heroku",
"DJANGO_SECRET_KEY": {
"generator": "secret"
},
"DJANGO_TIME_ZONE": {
"description": "Time zone for the server. List of options can be found here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones",
"value": ""
},
"COUNTRY_CODE": {
"description": "County code (used in Elvanto import)",
"value": ""
},
"WHITELISTED_LOGIN_DOMAINS": {
"description": "Automatically approve verified emails from this domain",
"value": "",
"required": false
},
"ELVANTO_KEY": {
"description": "Elvanto API Key",
"value": "",
"required": false
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis",
"papertrail:choklad",
"rollbar:free",
"scheduler:standard"
]
}