-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
46 lines (46 loc) · 1.13 KB
/
app.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "FFAuction Draft Tool",
"description": "Draft day tool for value-based drafting",
"keywords": [
"react",
"webpack",
"production",
"flask",
"python",
"less",
"hot",
"reload"
],
"website": "https://github.com/jbarciauskas/ffauction-app",
"addons": ["heroku-redis:hobby-dev"],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
}
],
"env": {
"BIND_ADDRESS": {
"description": "Bind address for gunicorn",
"value": "0.0.0.0"
},
"NODE_ENV": {
"description": "Set the `NODE_ENV` environment variable to `production` to disable debugging etc.",
"value": "production"
},
"NPM_CONFIG_PRODUCTION": {
"description": "By default heroku is not installing `devDependencies`, so let's do that.",
"value": "false"
},
"AUTH_USERNAME": {
"description": "Username for authorization for protected endpoints (CSV upload)",
"value": "admin"
},
"AUTH_PASSWORD": {
"description": "Password for authorization for protected endpoints (CSV upload)",
"generator": "secret"
}
}
}