https://github.com/azure/azure-dev
A developer CLI that provides commands for working with Azure resources that map to key workflow stages: code, build, deploy, monitor, repeat.
https://github.com/azure/azure-dev
agents ai azure cli deployments microsoft
Last synced: 30 days ago
JSON representation
A developer CLI that provides commands for working with Azure resources that map to key workflow stages: code, build, deploy, monitor, repeat.
- Host: GitHub
- URL: https://github.com/azure/azure-dev
- Owner: Azure
- License: mit
- Created: 2022-07-05T20:47:01.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-20T04:36:20.000Z (3 months ago)
- Last Synced: 2026-01-20T05:47:40.570Z (3 months ago)
- Topics: agents, ai, azure, cli, deployments, microsoft
- Language: Go
- Homepage: https://aka.ms/azd
- Size: 27 MB
- Stars: 490
- Watchers: 238
- Forks: 267
- Open Issues: 480
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
- Support: SUPPORT.md
- Notice: NOTICE.txt
Awesome Lists containing this project
README
# Azure Developer CLI (`azd`)
> **From code to cloud in minutes.** A developer-centric CLI to build, deploy, and operate Azure applications.
[](https://github.com/Azure/azure-dev/releases)
[](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.azure-dev)
[](https://github.com/Azure/azure-dev/discussions)
---
## Built for you
- โก **Get productive fast** โ Streamlined workflows to go from code to cloud in minutes
- ๐๏ธ **Azure recommended practices built-in** โ Opinionated templates that follow Azure development standards
- ๐ง **Learn as you build** โ Understand core Azure constructs through hands-on experience
๐ **[Get Started](https://aka.ms/azd)** ยท ๐ฌ **[Join the Discussion](https://github.com/Azure/azure-dev/discussions)** ยท ๐ฆ **[Browse Templates](https://azure.github.io/awesome-azd/)**
---
## Downloads
| Artifact | Version | Download |
| -------- | ------- | -------- |
| CLI |  | [Windows](https://azuresdkartifacts.z5.web.core.windows.net/azd/standalone/latest/azd-windows-amd64.zip) ยท [Linux](https://azuresdkartifacts.z5.web.core.windows.net/azd/standalone/latest/azd-linux-amd64.tar.gz) ยท [macOS](https://azuresdkartifacts.z5.web.core.windows.net/azd/standalone/latest/azd-darwin-amd64.zip) |
| VS Code Extension |  | [Marketplace](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.azure-dev) |
## ๐ค AI Agents
**Contributing to this repo?** See [AGENTS.md](cli/azd/AGENTS.md) for coding standards and guidelines.
**Using `azd` with an AI coding assistant?** Check out the [docs](https://aka.ms/azd) and [templates](https://azure.github.io/awesome-azd/).
---
## Installation
Install or upgrade to the latest version. For advanced scenarios, see the [installer docs](cli/installer/README.md).
### Windows
```powershell
# Using winget (recommended)
winget install microsoft.azd
# Or Chocolatey
choco install azd
# Or install script
powershell -ex AllSigned -c "Invoke-RestMethod 'https://aka.ms/install-azd.ps1' | Invoke-Expression"
```
### macOS
```bash
brew install azure/azd/azd
```
> **Note:** If upgrading from a non-Homebrew installation, remove the existing `azd` binary first.
### Linux
```bash
curl -fsSL https://aka.ms/install-azd.sh | bash
```
### Shell Completion
Enable tab completion for `bash`, `zsh`, `fish`, or `powershell`:
```bash
azd completion --help
```
---
## Uninstall
Windows
- **v0.5.0+**: Use "Add or remove programs" or your package manager (`winget uninstall`, `choco uninstall`)
- **v0.4.0 and earlier**:
```powershell
powershell -ex AllSigned -c "Invoke-RestMethod 'https://aka.ms/uninstall-azd.ps1' | Invoke-Expression"
```
Linux / macOS
```bash
curl -fsSL https://aka.ms/uninstall-azd.sh | bash
```
Or use your package manager's uninstall command.
---
## Data Collection
This software may collect usage data and send it to Microsoft to help improve our products. You can opt out by setting:
```bash
export AZURE_DEV_COLLECT_TELEMETRY=no
```
See the [Microsoft Privacy Statement](https://go.microsoft.com/fwlink/?LinkId=521839) for details.
---
## Contributing
We welcome contributions! Please see our [contributing guide](cli/azd/CONTRIBUTING.md) for details.
Most contributions require a [Contributor License Agreement (CLA)](https://cla.microsoft.com). A bot will guide you through this when you open a PR.
This project follows the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). Questions? Contact [opencode@microsoft.com](mailto:opencode@microsoft.com).
### Template Authors
Microsoft employees and partners contributing official templates should follow the [template standardization guidelines](https://github.com/Azure-Samples/azd-template-artifacts).
---
## Trademarks
This project may contain Microsoft trademarks or logos. Use of these must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/legal/intellectualproperty/trademarks). Third-party trademarks are subject to their respective policies.
## License
Licensed under the [MIT](LICENSE) license.