-
Notifications
You must be signed in to change notification settings - Fork 11
/
setenv_sample.js
27 lines (26 loc) · 1.05 KB
/
setenv_sample.js
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
process.env.ADT_URL = "https://vhcalnplci.bti.local:44300/"
process.env.ADT_USER = "developer"
process.env.ADT_PASS = "secret"
process.env.ADT_TRANS = "NPLK900060"
process.env.ADT_SYSTEMID = "NPL"
// Optimal setup for password protected git repos
process.env.ADT_GIT_REPO = "https://github.com/myaccount/myprivateproject.git"
process.env.ADT_GIT_USER = "myuser"
process.env.ADT_ATCAPPROVER = "myapprover"
process.env.ADT_GIT_PASS = "secret"
// uncomment the following line to allow disrupting tests i.e. create and release transports, create and delete objects
// process.env.ADT_ENABLE_ALL = "YES"
// for connecting with cloud instances, like Cloud Platform Trial. Pretty hard to get the right values
process.env.ADT_CP = JSON.stringify({
accessToken: "Oauth access token",
refreshToken: "Oauth refresh token",
tokenType: "bearer",
clientId: "your client ID",
clientSecret: "Your client secret",
uaaUrl: "your UAA Url",
url: "Abap instance URL",
user: "Myusername",
repopkg: "ZGITREPOPKG",
repouser: "git repo user",
repopwd: "git repo password"
})