-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
47 lines (46 loc) · 869 Bytes
/
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
47
{
"name": "chahub",
"scripts": {
"postdeploy": "bin/init_staging"
},
"env": {
"USE_SSL": "True",
"CHANNEL_BACKEND": "asgi_redis.RedisChannelLayer",
"GUNICORN_CMD_ARGS": "--workers=3",
"EMAIL_BACKEND": "django.core.mail.backends.smtp.EmailBackend"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
"heroku-postgresql",
"sendgrid:starter",
"scheduler:standard",
{
"plan": "searchbox:starter",
"options": {
"es_version": "5"
}
},
{
"plan": "heroku-redis:hobby-dev",
"options": {
"maxmemory_policy": "volatile-lru"
}
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}