-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
34 lines (34 loc) · 825 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
{
"name": "Leather",
"description": "A modern money management app.",
"keywords": [
"elixir",
"phoenix",
"react",
"redux",
"plaid",
"money-manager"
],
"website": "https://app.leatherapp.com",
"repository": "https://github.com/nicksergeant/leather",
"logo": "https://leatherapp.s3.amazonaws.com/logo.png",
"success_url": "/",
"scripts": {
"postdeploy": "mix ecto.migrate"
},
"env": {
"GZIP_ENABLED": "true",
"POOL_SIZE": "18",
"SECRET_KEY_BASE": {
"description": "Secret key for Elixir to use.",
"generator": "secret"
}
},
"buildpacks": [
{ "url": "https://github.com/HashNuke/heroku-buildpack-elixir" },
{ "url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static" }
],
"addons": [
"heroku-postgresql:hobby-dev"
]
}