forked from pubpub/pubpub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1022 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
43
44
45
46
47
{
"addons": ["cloudamqp:lemur"],
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-apt.git" },
{ "url": "heroku/nodejs" }
],
"env": {
"ERROR_PAGE_URL": {
"value": "https://s3.amazonaws.com/assets.pubpub.org/_site/error.html"
}
},
"environments": {
"test": {
"addons": ["heroku-postgresql:in-dyno"],
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-apt.git" },
{ "url": "https://github.com/heroku/heroku-buildpack-jvm-common.git" },
{ "url": "heroku/nodejs" }
],
"formation": {
"test": {
"quantity": 1,
"size": "performance-l"
}
},
"scripts": {
"test-setup": "npm install -g firebase-tools@10"
}
},
"review": {
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-apt.git" },
{ "url": "heroku/nodejs" }
],
"formation": {
"web": {
"quantity": 1,
"size": "standard-1X"
},
"worker": {
"quantity": 1,
"size": "standard-1X"
}
}
}
}
}