-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.base.json
59 lines (59 loc) · 1.34 KB
/
app.base.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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"addons": [
"heroku-postgresql:hobby-dev",
"newrelic:wayne",
"rediscloud:30"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/moneymeets/python-poetry-buildpack"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nginx"
}
],
"description": "MITx Online",
"env": {
"NEW_RELIC_APP_NAME": {
"description": "Application identifier in New Relic."
},
"NODE_MODULES_CACHE": {
"description": "If false, disables the node_modules cache to fix yarn install",
"value": "false"
},
"PGBOUNCER_DEFAULT_POOL_SIZE": {
"value": "50"
},
"PGBOUNCER_MIN_POOL_SIZE": {
"value": "5"
},
"SECRET_KEY": {
"generator": "secret"
}
},
"keywords": [
"Django",
"Python",
"MIT",
"Office of Digital Learning"
],
"name": "mitx_online",
"repository": "https://github.com/mitodl/mitx-online",
"scripts": {
"postdeploy": "./manage.py migrate --noinput"
},
"success_url": "/",
"website": "https://github.com/mitodl/mitx-online"
}