forked from TheOdinProject/theodinproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (29 loc) · 741 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
{
"environments": {
"review": {
"formation": [
{ "process": "web", "quantity": 1 },
{ "process": "worker", "quantity": 1 }
],
"buildpacks": [
{ "url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc.git" },
{ "url": "heroku/nodejs" },
{ "url": "heroku/ruby" },
{ "url": "https://github.com/devforce/heroku-buildpack-cleanup" }
],
"addons": [
"heroku-postgresql:mini",
"heroku-redis:mini"
],
"env": {
"STAGING": {
"description": "This is a staging environment",
"value": "true"
}
},
"scripts": {
"postdeploy": "bundle exec rake heroku:postdeploy"
}
}
}
}