forked from developerforce/salesforce-dx-pipeline-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
46 lines (46 loc) · 1.22 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
{
"name": "salesforce-dx-pipeline-sample",
"version": "0.0.1",
"description": "Test application for the salesforce-buildpack",
"repository": "https://github.com/TrailheadTechnicalCurriculum/salesforce-dx-pipeline-sample",
"author": "Trailhead",
"license": "ALv2",
"bugs": "https://github.com/TrailheadTechnicalCurriculum/salesforce-dx-pipeline-sample/issues",
"homepage": "https://github.com/TrailheadTechnicalCurriculum/salesforce-dx-pipeline-sample#readme",
"buildpacks": [
{
"url": "https://github.com/heroku/salesforce-cli-buildpack#v3"
},
{
"url": "https://github.com/douglascayers/salesforce-buildpack"
}
],
"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"
}
}