@mimik/local 5.2.0 → 5.2.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/lib/common.js +1 -1
- package/lib/tasks.js +3 -0
- package/package.json +1 -1
package/lib/common.js
CHANGED
package/lib/tasks.js
CHANGED
|
@@ -188,6 +188,9 @@ const startSetup = (config, origStart) => {
|
|
|
188
188
|
// server basics
|
|
189
189
|
start.SERVER_TYPE = type;
|
|
190
190
|
start.SERVER_ID = start.SERVER_ID || uuid.v4();
|
|
191
|
+
// api access
|
|
192
|
+
start.BITBUCKET_USERNAME = config.key.username;
|
|
193
|
+
start.BITBUCKET_PASSWORD = config.key.password;
|
|
191
194
|
// passphrase to be shared to all the servers
|
|
192
195
|
if (config.mST.passphrase) start.PASSPHRASE = config.mST.passphrase;
|
|
193
196
|
// oauth issuer full address
|