@mimik/local 5.2.0 → 5.2.1

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.
Files changed (2) hide show
  1. package/lib/tasks.js +3 -0
  2. package/package.json +1 -1
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimik/local",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "Local setup configuration for normal and test opreration",
5
5
  "main": "index.js",
6
6
  "scripts": {