-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
33 lines (33 loc) · 854 Bytes
/
app.json
File metadata and controls
33 lines (33 loc) · 854 Bytes
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
{
"name": "MAGFest Budget System",
"description": "A Flask-based budget request and approval system for MAGFest events.",
"keywords": [
"flask",
"python",
"budget",
"approval",
"workflow"
],
"stack": "heroku-24",
"buildpacks": [
{
"url": "heroku/python"
}
],
"addons": [
"heroku-postgresql"
],
"env": {
"APP_ENV": "development",
"BETA_TESTING_MODE": "True",
"DEV_LOGIN_ENABLED": "True",
"ENV_BANNER_MESSAGE": "Review App",
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "flask db upgrade && python -c \"from app import create_app; from app.seeds.config_seed import run_all_seeds; app = create_app(); app.app_context().push(); run_all_seeds()\""
}
}