forked from sharkipedia/sharkipedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (38 loc) · 772 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
{
"name": "sharkipedia",
"scripts": {
"postdeploy": "heroku pg:copy sharkipedia::DATABASE DATABASE -a $HEROKU_APP_NAME --confirm $HEROKU_APP_NAME && bundle exec rails db:migrate"
},
"env": {
"SECRET_KEY_BASE": {
"description": "rails secret",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-cli"
},
{
"url": "https://github.com/heroku/heroku-geo-buildpack"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}