-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
53 lines (53 loc) · 1.32 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
47
48
49
50
51
52
53
{
"name": "MySuma Platform",
"description": "Suma is a platform and application for collective purchasing and local community empowerment.",
"keywords": [],
"website": "https://github.com/lithictech/suma",
"repository": "https://github.com/lithictech/suma",
"logo": "https://mysuma.org/wp-content/uploads/2020/06/finalpng-resize.png",
"scripts": {},
"env": {
"BUILDPACK_RUN": {
"description": "https://elements.heroku.com/buildpacks/weibeld/heroku-buildpack-run",
"value": "make build-frontends"
},
"BUILDPACK_RUN_LOAD_CONFIG": {
"description": "https://elements.heroku.com/buildpacks/weibeld/heroku-buildpack-run",
"value": "1"
},
"SUMA_DB_EXTENSION_SCHEMA": {
"required": "heroku_ext"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
},
"worker": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
},
{
"plan": "heroku-redis",
"options": {
"version": "6.2"
}
}
],
"buildpacks": [
{"url": "heroku-community/apt"},
{"url": "heroku/ruby"},
{"url": "heroku/nodejs"},
{"url": "https://github.com/weibeld/heroku-buildpack-run.git"},
{"url": "wonderbly/post-build-clean"}
]
}