forked from wadewegner/salesforce-dx-pipeline-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
52 lines (52 loc) · 1.23 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
{
"name": "salesforce-dx-pipeline-sample",
"version": "0.0.1",
"description": "Test application for the salesforce-dx-buildpack",
"repository": "https://github.com/wadewegner/salesforce-dx-pipeline-sample",
"author": "",
"license": "ALv2",
"bugs": {
"url": "https://github.com/wadewegner/salesforce-dx-pipeline-sample/issues"
},
"homepage":
"https://github.com/wadewegner/salesforce-dx-pipeline-sample#readme",
"dependencies": {},
"devDependencies": {},
"buildpacks": [
{
"url": "https://github.com/heroku/salesforce-cli-buildpack#v3"
},
{
"url": "https://github.com/heroku/salesforce-buildpack#v1"
}
],
"env": {
"SFDX_DEV_HUB_AUTH_URL": {
"required": true
},
"SFDX_BUILDPACK_DEBUG": {
"required": true
},
"HEROKU_APP_NAME" : {
"required": true
}
},
"environments": {
"test": {
"scripts": {
"test-setup":
"./vendor/sfdx/release.sh ci-$HEROKU_TEST_RUN_COMMIT_VERSION && ./bin/test-setup.sh",
"test": "./bin/test.sh"
},
"formation": {
"test": {
"quantity": 1,
"size": "standard-1x"
}
}
}
},
"scripts": {
"pr-predestroy": "./bin/ra-org-delete.sh"
}
}