forked from adoptoposs/adoptoposs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
36 lines (36 loc) · 798 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
{
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "mailgun:starter"
}
],
"buildpacks": [
{
"url": "https://github.com/emk/heroku-buildpack-rust.git"
},
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
],
"env": {
"MIX_ENV": "prod",
"POOL_SIZE": 18,
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"LIVE_VIEW_SIGNING_SALT": {
"description": "A secret key for verifying the integrity of web sockets",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "bin/postdeploy"
}
}