forked from vitorfs/colossus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 loc) · 1.26 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
{
"name": "Colossus",
"description": "Self-hosted email marketing solution.",
"repository": "https://github.com/vitorfs/colossus",
"keywords": ["python", "django", "email marketing", "mailing lists"],
"scripts": {
"postdeploy": "python manage.py migrate"
},
"logo": "https://colossus.simpleisbetterthancomplex.com/static/img/favicon.png",
"addons": [
"heroku-postgresql:hobby-dev",
"mailgun:starter"
],
"env": {
"DEFAULT_FROM_EMAIL": {
"description": "Default email address to send emails from the application. Please note that you need to do further domain validation via Mailgun App to enable email sending from this installation.",
"value": "[email protected]"
},
"DJANGO_SETTINGS_MODULE": {
"value": "colossus.heroku_settings"
},
"DEBUG": {
"value": "False"
},
"SECRET_KEY": {
"generator": "secret"
},
"ALLOWED_HOSTS": {
"value": ".herokuapp.com"
},
"COLOSSUS_HTTPS_ONLY": {
"value": "True"
},
"CELERY_TASK_ALWAYS_EAGER": {
"description": "Determine if celery tasks will be executed synchronously or will be delayed. Change this value to 'False' if you are deploying a production environment.",
"value": "True"
}
},
"success_url": "/setup/"
}