-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
33 lines (33 loc) · 789 Bytes
/
app.json
File metadata and controls
33 lines (33 loc) · 789 Bytes
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
{
"name": "Erande",
"description": "quiz app using channel.",
"keywords": [
"elixir",
"phoenixframework"
],
"repository": "https://github.com/yodatomato/erande",
"scripts": {
"postdeploy": "mix ecto.migrate"
},
"env": {
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"MIX_ENV": "prod",
"TWITTER_CONSUMER_KEY": "twitter-api-key",
"TWITTER_CONSUMER_SECRET": "twitter-api-secret",
"PGSSLMODE": "require"
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static"
}
]
}