-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
39 lines (39 loc) · 950 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
{
"name": "Liqen Core",
"description": "The Core app of Liqen - the Wikipedia of Facts",
"repository": "https://github.com/exacs/liqen-core",
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"scripts": {
"postdeploy": "POOL_SIZE=2 mix ecto.migrate"
},
"env": {
"POOL_SIZE": "18",
"SECRET_KEY_BASE": {
"description": "A secret key base for verifying Access tokens",
"generator": "secret"
},
"SECRET_KEY_K": {
"description": "A secret key base for verifying Access tokens",
"generator": "secret"
},
"APP_URL_HOST": {
"description": "Root URL of the APP, without the http(s) part",
"required": true
}
}
}