Add Heroku app manifest

This commit is contained in:
Gabriel Augendre 2016-06-03 17:32:02 +02:00
parent 08f7a14a24
commit 70c2d9460d
No known key found for this signature in database
GPG Key ID: D2B6A5B41FC438B1
1 changed files with 32 additions and 0 deletions

32
app.json Normal file
View File

@ -0,0 +1,32 @@
{
"name": "refunds",
"description": "Refunds management app",
"scripts": {
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
],
"env": {
"SECRET_KEY": {
"description": "Django secret key",
"generator": "secret"
},
"DJANGO_LOCALE": {
"description": "Locale to use in Django",
"value": "en-us"
},
"DJANGO_TIMEZONE": {
"description": "Timezone to use in Django",
"value": "Europe/Paris"
},
"DJANGO_ENV": {
"description": "Django environment. \"prod\" or \"dev\"",
"value": "prod"
}
}
}