-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
50 lines (50 loc) · 964 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
48
49
50
{
"name": "nexpo-backend",
"scripts": {
"postdeploy": "DB_POOL_SIZE=2 && mix ecto.migrate"
},
"env": {
"DB_POOL_SIZE": "15",
"STAGING": "TRUE",
"HOST_NAME": {
"required": true
},
"HEROKU_APP_NAME": {
"required": true
},
"MIX_ENV": {
"required": true
},
"REACT_APP_SENTRY_DSN": {
"required": true
},
"SECRET_KEY_BASE": {
"required": true
},
"SENTRY_DSN": {
"required": true
},
"SMTP_PASSWORD": {
"required": true
},
"SMTP_SERVER_NAME": {
"required": true
},
"SMTP_SERVER_PORT": {
"required": true
},
"SMTP_USERNAME": {
"required": true
}
},
"formation": {},
"addons": ["heroku-postgresql", "sentry"],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
]
}