forked from bensheldon/good_job
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 746 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
{
"name": "Good Job demo app",
"description": "A multithreaded, Postgres-based ActiveJob backend for Ruby on Rails showcase",
"website": "https://github.com/bensheldon/good_job/",
"repository": "https://github.com/bensheldon/good_job/",
"env": {
"BUNDLE_WITHOUT": {
"description": "Install all Ruby gems, including dev dependencies",
"value": "_blank"
},
"RACK_ENV": {
"value": "production"
},
"RAILS_ENV": {
"value": "demo"
},
"SECRET_KEY_BASE": {
"generator": "secret"
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"addons": [
{
"plan": "heroku-postgresql"
}
],
"scripts": {
"postdeploy": "bin/rails heroku:postdeploy"
}
}