forked from zinc-collective/convene
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
56 lines (56 loc) · 1.04 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
54
55
56
{
"name": "Convene Web",
"env": {
"LOCKBOX_MASTER_KEY": {
"description": "Encrypts data within the database",
"generator": "secret"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby"
}
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "12"
}
},
{
"plan": "heroku-redis:hobby-dev"
}
],
"environments": {
"review": {
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
},
"worker": {
"quantity": 1,
"size": "hobby"
}
},
"env": {
"LOCKBOX_MASTER_KEY": {
"description": "Encrypts data within the database",
"generator": "secret"
}
},
"addons": [
{
"plan": "heroku-postgresql:mini"
},
{
"plan": "heroku-redis:mini"
}
]
}
}
}