-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
46 lines (45 loc) · 1.05 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
{
"name": "churchify",
"description": "",
"scripts": {
"postdeploy": "POOL_SIZE=2 mix prod.setup"
},
"env": {
"MIX_ENV": {
"description": "The environment.",
"required": true,
"value": "prod"
},
"SECRET_KEY_BASE": {
"description": "The phoenix secret key.",
"required": true,
"generator": "secret"
},
"POOL_SIZE": {
"description": "The pool size for postgres.",
"required": true,
"value": "18"
},
"ADMIN_EMAIL": {
"description": "Your email, you'll need it to login for the first time.",
"required": true
},
"HEROKU_HOST": {
"description": "The host you'll be using. By default, it will be `thenameyougave.herokuapp.com`",
"required": true
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql",
"sendgrid"
],
"buildpacks": [
{"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"},
{"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"}
]
}