-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.json
45 lines (44 loc) · 1.14 KB
/
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
39
40
41
42
43
44
{
"name": "Avo demo",
"description": "Avo demo app",
"website": "https://main.avodemo.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"
},
"BUNDLE_PACKAGER__DEV": {
"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": "https://github.com/heroku/heroku-buildpack-apt.git" },
{ "url": "https://github.com/brandoncc/heroku-buildpack-vips" },
{ "url": "heroku/nodejs" },
{ "url": "heroku/ruby" }
],
"cron": [
{
"command": "rails avodemo:reset",
"schedule": "0 */12 * * *"
}
]
}