-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
46 lines (46 loc) · 1.3 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
45
46
{
"name": "Tell us who you employ",
"description": "rails app for buckinghamshire council's childcare employee records. oauth consumer. works with outpost.",
"stack": "heroku-20",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby"
}
],
"environments": {
"test": {
"env": {
"OFSTED_FEED_API_ENDPOINT": "https://test-ofsted-feed.stub",
"NODE_OPTIONS": "--openssl-legacy-provider"
},
"addons": ["heroku-postgresql:in-dyno"],
"scripts": {
"test-setup": "SECRET_KEY_BASE=dummyvalue bundle exec rails assets:precompile",
"test": "bundle exec rspec"
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
},
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
}
]
},
"review": {
"scripts": {
"postdeploy": "bin/rails SEED_ADMIN_USER=true SEED_DUMMY_DATA=true db:seed",
"pr-predestroy": "bin/teardown"
}
}
}
}