Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.24 KB

CLI.md

File metadata and controls

47 lines (30 loc) · 1.24 KB

TeamCloud CLI

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.

Install

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

Update

To update Azure CLI TeamCloud extension to the latest version:

az tc update

or for the latest pre-release version:

az tc update --pre

Local Development

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