mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
* Revive this concept for 2023
(cherry picked from commit b3939d8426)
# Conflicts:
# pipeline/source_assets/scss/dark_screen.scss
* Update app.json
* Updates to all three layouts
58 lines
955 B
JSON
58 lines
955 B
JSON
{
|
|
"name": "PyRIGS",
|
|
"description": "",
|
|
"scripts": {
|
|
"postdeploy": "python manage.py migrate && python manage.py generateSampleData"
|
|
},
|
|
"stack": "heroku-22",
|
|
"env": {
|
|
"DEBUG": {
|
|
"required": true
|
|
},
|
|
"STAGING": "1",
|
|
"EMAIL_FROM": {
|
|
"required": true
|
|
},
|
|
"EMAIL_HOST": {
|
|
"required": true
|
|
},
|
|
"EMAIL_HOST_PASSWORD": {
|
|
"required": true
|
|
},
|
|
"EMAIL_HOST_USER": {
|
|
"required": true
|
|
},
|
|
"EMAIL_PORT": {
|
|
"required": true
|
|
},
|
|
"EMAIL_USE_SSL": {
|
|
"required": true
|
|
},
|
|
"RECAPTCHA_PRIVATE_KEY": {
|
|
"required": true
|
|
},
|
|
"RECAPTCHA_PUBLIC_KEY": {
|
|
"required": true
|
|
},
|
|
"SECRET_KEY": {
|
|
"generator": "secret"
|
|
}
|
|
},
|
|
"formation": {
|
|
"web": {
|
|
"quantity": 1
|
|
}
|
|
},
|
|
"addons": [
|
|
"heroku-postgresql"
|
|
],
|
|
"buildpacks": [
|
|
{
|
|
"url": "heroku/nodejs"
|
|
},
|
|
{
|
|
"url": "heroku/python"
|
|
}
|
|
]
|
|
}
|