-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.json
36 lines (36 loc) · 925 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
{
"name": "Shield",
"description": "OAuth2 provider microservice endpoints.",
"repository": "https://github.com/mustafaturan/shield",
"keywords": ["phoenix", "oauth2", "microservice", "shield"],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"
}
],
"env": {
"SECRET_KEY_BASE": {
"description": "Secret key base.",
"generator": "secret"
},
"SECRET_SIGNING_SALT": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"POOL_SIZE": {
"description": "Database pool size",
"value": "10"
},
"SENDGRID_API_KEY": {
"description": "Sendgrid API KEY with mail sending rights",
"value": ""
}
},
"addons": [
"heroku-postgresql",
"sendgrid"
],
"scripts": {
"postdeploy": "MIX_ENV=prod mix ecto.migrate -r Authable.Repo"
}
}