Add Heroku app manifest
This commit is contained in:
parent
08f7a14a24
commit
70c2d9460d
1 changed files with 32 additions and 0 deletions
32
app.json
Normal file
32
app.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue