-
Notifications
You must be signed in to change notification settings - Fork 112
/
app.json
56 lines (56 loc) · 1.12 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "tilex",
"scripts": {
"postdeploy": "mix ecto.migrate && POOL_SIZE=1 mix run priv/repo/seeds.exs"
},
"env": {
"BASIC_AUTH_PASSWORD": {
"required": true
},
"BASIC_AUTH_USERNAME": {
"required": true
},
"CANONICAL_DOMAIN": {
"required": true
},
"ENABLE_BASIC_AUTH": {
"required": true
},
"GOOGLE_CLIENT_ID": {
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"required": true
},
"ORGANIZATION_NAME": {
"required": true
},
"POOL_SIZE": {
"required": true
},
"SECRET_KEY_BASE": {
"required": true
},
"IMGUR_CLIENT_ID": {
"required": true
},
"DATE_DISPLAY_TZ": {
"required": true
},
"OTP_COOKIE": {
"description": "A cookie used for remote node connections",
"generator": "secret",
"required": true
}
},
"formation": {},
"addons": ["heroku-postgresql"],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
]
}