-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (37 loc) · 914 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
{
"name": "Jumpstart Pro",
"description": "A Ruby on Rails template for SaaS apps and more",
"website": "https://jumpstartrails.com",
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
},
"env": {
"RAILS_MASTER_KEY": {
"description": "Secret key for decrypting Rails credentials. You can find it at: config/credentials/production.key"
},
"RAILS_ENV": {
"description": "The Rails environment to run: production or staging",
"value": "production"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/ruby",
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"scheduler:standard"
],
"buildpacks": [{ "url": "heroku/nodejs" }, { "url": "heroku/ruby" }],
"environments": {
"test": {
"scripts": {
"test": "bundle exec rails test"
}
}
}
}