-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 985 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
38
39
40
41
42
{
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby"
}
],
"addons": [
"heroku-postgresql"
],
"environments": {
"test": {
"env": {
"LANG": "en_US.UTF-8",
"NPM_CONFIG_PRODUCTION": "false",
"RACK_ENV": "test",
"RAILS_ENV": "test",
"RAILS_LOG_TO_STDOUT": "enabled",
"RAILS_SERVE_STATIC_FILES": "enabled"
},
"scripts": {
"test": "bundle exec rake spec:fast"
}
},
"review": {
"addons": [
"rediscloud"
],
"scripts": {
"postdeploy": "rails db:migrate; rails db:seed"
}
}
}
}