@nsshunt/stsconfig 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/stsconfig.js +26 -26
package/package.json
CHANGED
package/stsconfig.js
CHANGED
|
@@ -112,47 +112,47 @@ const defconfig =
|
|
|
112
112
|
,cspassword: (process.env.CS_PASSWORD === undefined ? "K6TestUserPassword" : process.env.CS_PASSWORD)
|
|
113
113
|
*/
|
|
114
114
|
|
|
115
|
-
// STSREST01 Server
|
|
115
|
+
// STSREST01 Server endpoint
|
|
116
116
|
,rest01endpoint: (process.env.REST01_ENDPOINT === undefined ? "http://localhost" : process.env.REST01_ENDPOINT)
|
|
117
|
-
// STSREST01 Server
|
|
117
|
+
// STSREST01 Server port (listen port for the service)
|
|
118
118
|
,rest01hostport: (process.env.REST01_HOST_PORT === undefined ? "3000" : process.env.REST01_HOST_PORT)
|
|
119
|
-
// STSREST01 Server
|
|
119
|
+
// STSREST01 Server port (client port to access the service)
|
|
120
120
|
,rest01port: (process.env.REST01_PORT === undefined ? "3000" : process.env.REST01_PORT)
|
|
121
|
-
// STSREST01 Server
|
|
122
|
-
,rest01apiroot: (process.env.REST01_APIROOT === undefined ? "/stsrest01/v1/
|
|
123
|
-
// STSREST01 Server
|
|
121
|
+
// STSREST01 Server endpoint
|
|
122
|
+
,rest01apiroot: (process.env.REST01_APIROOT === undefined ? "/stsrest01/v1/im" : process.env.REST01_APIROOT)
|
|
123
|
+
// STSREST01 Server username email
|
|
124
124
|
,rest01email: (process.env.REST01_EMAIL === undefined ? "K6TestUser@sts" : process.env.REST01_EMAIL)
|
|
125
|
-
// STSREST01 Server
|
|
125
|
+
// STSREST01 Server username password
|
|
126
126
|
,rest01password: (process.env.REST01_PASSWORD === undefined ? "K6TestUserPassword" : process.env.REST01_PASSWORD)
|
|
127
127
|
// STSREST01 Service Name
|
|
128
128
|
,rest01servicename: (process.env.REST01_SERVICE_NAME === undefined ? "STSRest01" : process.env.REST01_SERVICE_NAME)
|
|
129
129
|
// STSREST01 Service Version
|
|
130
130
|
,rest01serviceversion: (process.env.REST01_SERVICE_VERSION === undefined ? "1.0.0" : process.env.REST01_SERVICE_VERSION)
|
|
131
131
|
|
|
132
|
-
//
|
|
133
|
-
,
|
|
134
|
-
//
|
|
135
|
-
,
|
|
136
|
-
//
|
|
137
|
-
,
|
|
138
|
-
//
|
|
139
|
-
,
|
|
140
|
-
//
|
|
141
|
-
,
|
|
142
|
-
//
|
|
143
|
-
,
|
|
144
|
-
|
|
145
|
-
// Auth Server
|
|
132
|
+
// STS Instrument Manager Server endpoint
|
|
133
|
+
,imendpoint: (process.env.IM_ENDPOINT === undefined ? "http://localhost" : process.env.IM_ENDPOINT)
|
|
134
|
+
// STS Instrument Manager Server port (listen port for the service)
|
|
135
|
+
,imhostport: (process.env.IM_HOST_PORT === undefined ? "3001" : process.env.IM_HOST_PORT)
|
|
136
|
+
// STS Instrument Manager Server port (client port to access the service)
|
|
137
|
+
,import: (process.env.IM_PORT === undefined ? "3001" : process.env.IM_PORT)
|
|
138
|
+
// STS Instrument Manager Server endpoint
|
|
139
|
+
,imapiroot: (process.env.IM_APIROOT === undefined ? "/stsinstrumentmanager/v1" : process.env.IM_APIROOT)
|
|
140
|
+
// STS Instrument Manager Server username email
|
|
141
|
+
,imemail: (process.env.IM_EMAIL === undefined ? "K6TestUser@sts" : process.env.IM_EMAIL)
|
|
142
|
+
// STS Instrument Manager Server username password
|
|
143
|
+
,impassword: (process.env.IM_PASSWORD === undefined ? "K6TestUserPassword" : process.env.IM_PASSWORD)
|
|
144
|
+
|
|
145
|
+
// Auth Server endpoint
|
|
146
146
|
,asendpoint: (process.env.AS_ENDPOINT === undefined ? "http://localhost" : process.env.AS_ENDPOINT)
|
|
147
|
-
// Auth Server
|
|
147
|
+
// Auth Server host port (listen port for the service)
|
|
148
148
|
,ashostport: (process.env.AS_HOST_PORT === undefined ? "3002" : process.env.AS_HOST_PORT)
|
|
149
|
-
// Auth Server
|
|
149
|
+
// Auth Server port (client port to access the service)
|
|
150
150
|
,asport: (process.env.AS_PORT === undefined ? "3002" : process.env.AS_PORT)
|
|
151
|
-
// Auth Server
|
|
151
|
+
// Auth Server endpoint
|
|
152
152
|
,asapiroot: (process.env.AS_APIROOT === undefined ? "/stsauth/v1" : process.env.AS_APIROOT)
|
|
153
|
-
// Auth Server
|
|
153
|
+
// Auth Server username email
|
|
154
154
|
,asemail: (process.env.AS_EMAIL === undefined ? "K6TestUser@sts" : process.env.AS_EMAIL)
|
|
155
|
-
// Auth Server
|
|
155
|
+
// Auth Server username password
|
|
156
156
|
,aspassword: (process.env.AS_PASSWORD === undefined ? "K6TestUserPassword" : process.env.AS_PASSWORD)
|
|
157
157
|
// STSAuth Service Name
|
|
158
158
|
,asservicename: (process.env.AS_SERVICE_NAME === undefined ? "STSAuth" : process.env.AS_SERVICE_NAME)
|