-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
36 lines (36 loc) · 929 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
{
"name": "Deploy to Salesforce DX",
"description": "An application that will deploy an SFDX project from a public Github repo",
"repository": "https://github.com/wadewegner/deploy-to-sfdx",
"logo": "",
"keywords": ["deploy", "sfdx", "salesforcedx"],
"image": "",
"scripts": {
"postdeploy": "bin/deploy"
},
"env": {
"CALLBACKURL": {
"description": "The callback URL for your Connected App",
"value": ""
},
"CONSUMERKEY": {
"description": "The consumer key for your Connected App.",
"value": ""
},
"CONSUMERSECRET": {
"description": "The consumer secret for your Connected App.",
"value": ""
},
"STARTINGDIRECTORY": {
"description": "The base directory for the CLI",
"value": ""
}
},
"buildpacks": [{
"url": "https://github.com/wadewegner/salesforce-cli-buildpack"
},
{
"url": "heroku/nodejs"
}
]
}