forked from heroku/heroku-buildpack-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
35 lines (35 loc) · 907 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
{
"name": "Heroku Buildpack Ruby",
"description": "The buildpack for Ruby",
"environments": {
"test": {
"addons": [
"heroku-redis:mini"
],
"env": {
"HATCHET_RETRIES": "3",
"IS_RUNNING_ON_CI": "true",
"HATCHET_APP_LIMIT": "100",
"BUILDPACK_LOG_FILE": "tmp/buildpack.log"
},
"formation": {
"test": {
"size": "performance-l",
"quantity": 16
}
},
"scripts": {
"test-setup": "bundle exec rake hatchet:setup_ci",
"test": "bundle exec rspec-queue --max-requeues=3 --timeout 180 --queue $REDIS_URL || { cat log/test_order.log; $(exit 1); }"
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-cli.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby"
}
]
}
}
}