@soos-io/soos-scm-audit
v0.0.7
Published
SOOS SCM Audit CLI
Downloads
5
Readme
SOOS
The SOOS SCM Audit script should be used to determine the number of contributing developers in your organization.
Requirements
Installation
You may choose to install the package globally or locally, if you are unsure, you can find out more about installing globally on npm.
Globally
run npm i -g @soos-io/soos-scm-audit@latest
Locally
run npm install --prefix ./soos @soos-io/soos-scm-audit
Configure and Run the Script
NOTE: you can find values for the --apiKey
and --clientId
at app.soos.io.
For GitHub
Generate a GitHub Public Access Token (PAT) for your organization and ensure that it has the full
repo
permission set.Plug in the values for
--apiKey
,--clientId
,--secret
, and--organizationName
and run the script.
When Installed Globally:
soos-scm-audit --apiKey=<API_KEY> --clientId=<CLIENT_ID> --scmType=GitHub --secret=<GITHUB_PAT> --organizationName="<GITHUB_ORG_NAME>"
When Installed Locally:
node ./soos/node_modules/@soos-io/soos-scm-audit/bin/index.js --apiKey=<API_KEY> --clientId=<CLIENT_ID> --scmType=GitHub --secret=<GITHUB_PAT> --organizationName="<GITHUB_ORG_NAME>"
For Bitbucket Cloud
Generate an App Password for your organization and ensure that it has the Read
Repositories
permission set.Plug in the values for
--apiKey
,--clientId
,--secret
, and--workspace
, and--username
and run the script.
When Installed Globally:
soos-scm-audit --apiKey=<API_KEY> --clientId=<CLIENT_ID> --scmType=BitbucketCloud --secret=<APP_PASSWORD> --workspace="<BITBUCKET_WORKSPACE>" --username="<BITBUCKET_USERNAME>"
When Installed Locally:
node ./soos/node_modules/@soos-io/soos-scm-audit/bin/index.js --apiKey=<API_KEY> --clientId=<CLIENT_ID> --scmType=BitbucketCloud --secret=<APP_PASSWORD> --workspace="<BITBUCKET_WORKSPACE>" --username="<BITBUCKET_USERNAME>"
Parameters
| General Parameters | Default | Description | |------------------------|---------|----------------------------------------------------------| | --apiKey | | SOOS API Key - get yours from SOOS Integration. Uses SOOS_API_KEY env value if present. | | --clientId | | SOOS Client ID - get yours from SOOS Integration. Uses SOOS_API_CLIENT env value if present. | | --logLevel | | Minimum level to show logs: DEBUG, INFO, WARN, FAIL, ERROR. | | --saveResults | | Save results to file. | | --scmType | | Scm Type to use for the audit. Options: GitHub, BitBucketCloud | | --verbose | false | Enable verbose logging. |
| BitBucket Cloud Parameters | Default | Description | |----------------------------|---------|----------------------------------------------------------| | --username | | Username where the App password was generated for BitBucketCloud. | | --secret | | Secret to use for API calls. It should be a App Password | | --workspace | | Workspace name to run audit for BitBucketCloud. |
| GitHub Parameters | Default | Description | |----------------------------|---------|----------------------------------------------------------| | --organizationName | | Organization name to run audit for GitHub. | | --secret | | Secret to use for API calls. It should be a GPAT |