The TeamCloud CLI is an extension for the Azure CLI. It can be used by application development teams to create and manage Projects, and by TeamCloud admins to create new TeamCloud instances or manage existing instances.
To install the Azure CLI TeamCloud extension, simply run the following command:
az extension add --source https://github.com/microsoft/TeamCloud/releases/latest/download/tc-0.5.3-py2.py3-none-any.whl -y
To update Azure CLI TeamCloud extension to the latest version:
az tc update
or for the latest pre-release version:
az tc update --pre
The To use the Azure CLI TeamCloud extension with a locally running TeamCloud instance, first set the default base url to your localhost TeamCloud API endpoint:
az configure -d tc-base-url=https://localhost:5001
Next, you must temporarily disable Azure CLI's connection verification:
macOS or Linux
export AZURE_CLI_DISABLE_CONNECTION_VERIFICATION=1
Windows
set AZURE_CLI_DISABLE_CONNECTION_VERIFICATION=1