-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
executable file
·47 lines (46 loc) · 1021 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
{
"name": "Push Backend",
"description": "A backend middleware to communicate between CMS and mobile app for the Push ecosystem.",
"website": "https://small-sharp-tool.com/",
"repository": "https://github.com/PushOCCRP/Push-Backend",
"success_url": "/notifications",
"scripts": {
"postdeploy": "bash entrypoint.sh"
},
"env": {
"cms_mode": {
"value": "occrp-joomla"
},
"force_https": {
"value": "true"
},
"occrp_joomla_url": {
"value": "https://www.occrp.org/index.html?option=com_push&format=json&view=articles"
},
},
"formation": {
"web": {
"quantity": 2,
"size": "Performance-M"
}
},
"image": "heroku/ruby",
"addons": [
"openredis",
{
"plan": "mongolab:shared-single-small",
"as": "MONGO"
},
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"buildpacks": [
{
"url": "https://github.com/stomita/heroku-buildpack-phantomjs"
}
]
}