forked from mshanemc/deploy-to-sfdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
61 lines (61 loc) · 2.05 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
57
58
59
60
61
{
"name": "SFDX Public Deployer",
"description": "An application that will deploy an SFDX project from a public Github repo",
"repository": "https://github.com/mshanemc/deploy-to-sfdx",
"keywords": ["deploy", "sfdx", "salesforcedx"],
"env": {
"CONSUMERKEY": {
"description": "The consumer key for your Connected App.",
"value": "",
"required": true
},
"HUB_USERNAME": {
"description": "The username for your connected app",
"value": "",
"required": true
},
"JWTKEY": {
"description": "The server.key file from your connected app",
"value": "",
"required": true
},
"HEROKU_API_KEY": {
"description": "Get from account settings in the UI (https://dashboard.heroku.com/account)",
"value": ""
},
"HEROKU_APP_NAME": {
"description": "name of your heroku app...used for review apps and one-off dyno creation"
},
"LOG_LEVEL": {
"value": "debug"
}
},
"formation": {
"web": { "quantity": 1, "size": "free" },
"orgbuilder": { "quantity": 1, "size": "free" },
"pooldeployer": { "quantity": 0, "size": "free" },
"poolwatcher": { "quantity": 0, "size": "free" },
"oneoffbuilder": { "quantity": 0, "size": "free" },
"poolskimmer": { "quantity": 0, "size": "free" },
"dynoskimmer": { "quantity": 0, "size": "free" }
},
"buildpacks": [
{
"url": "https://buildpack-registry.s3.amazonaws.com/buildpacks/jontewks/puppeteer.tgz"
},
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/mshanemc/salesforce-cli-buildpack#456646ed76729bc4ef32db7a22758de5c217a7b8"
},
{
"url": "https://github.com/heroku/heroku-buildpack-cli#ff0bfe609b4618be16b5e446d623d0eabc1576cb"
}
],
"addons": [
{
"plan": "heroku-redis:hobby-dev"
}
]
}