-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
37 lines (37 loc) · 923 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
{
"name": "salesforce-multi-org-sync-demo",
"description": "A heroku app / tutorial to setup salesforce org sync",
"repository": "https://github.com/jziesing/salesforce-multi-org-sync-demo",
"env": {
"SCHEMA_A": {
"description": "the postgres schema name of org a",
"value": "",
"required": "true"
},
"SCHEMA_B": {
"description": "the postgres schema name of org b",
"value": "",
"required": "true"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-1x"
}
},
"addons": [
{
"plan": "papertrail:choklad"
},
{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "herokuconnect:demo"
},
{
"plan": "herokuconnect:demo"
}
]
}