cookiecutter-django/{{cookiecutter.repo_name}}/app.json

36 lines
1.1 KiB
JSON
Raw Normal View History

2015-09-03 21:52:59 +03:00
{
"name": "{{cookiecutter.repo_name}}",
"description": "{{cookiecutter.description}}",
"env": {
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-python",
"DJANGO_SETTINGS_MODULE": "config.settings.production",
"DJANGO_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DJANGO_ALLOWED_HOSTS": {
"description": "Comma-separated list of hosts",
"value": ".herokuapp.com"
},
2015-10-04 01:01:35 +03:00
"DJANGO_ADMIN_URL": {
"description": "A secret URL for the Django admin",
"generator": "secret"
},
2015-09-03 21:52:59 +03:00
"DJANGO_AWS_ACCESS_KEY_ID": "",
"DJANGO_AWS_SECRET_ACCESS_KEY": "",
"DJANGO_AWS_STORAGE_BUCKET_NAME": "",
"DJANGO_MAILGUN_SERVER_NAME": "",
"DJANGO_MAILGUN_API_KEY": ""{% if cookiecutter.use_sentry == "y" -%},
2015-10-04 15:06:20 +03:00
"DJANGO_SENTRY_DSN": ""{%- endif %}{% if cookiecutter.use_newrelic == "y -%"},
"NEW_RELIC_LICENSE_KEY": ""{%- endif %}
2015-09-03 21:52:59 +03:00
},
"scripts": {
"postdeploy": "python manage.py migrate"
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"mailgun"
]
}