A collection of ready-to-deploy Azure sample projects using Azure Developer CLI (azd). Each sample includes Bicep templates, configuration files, and deployment instructions for common Azure scenarios.
- Web App + Database - Simple web application with Azure SQL Database
- Container App - Containerized application with Azure Container Apps
- FastAPI Web App - Python FastAPI application with RESTful API
- Function App + Storage - Azure Functions with Blob Storage
- Static Web App - Frontend application with Azure Static Web Apps
- API + Cache - REST API with Azure Cache for Redis
- AI Chat App - Chat application with Azure OpenAI
- Azure Developer CLI (azd)
- Azure CLI
- An Azure subscription
Run the deployment script to select and deploy a sample:
# Windows (PowerShell)
.\deploy-sample.ps1
# Windows (Command Prompt)
deploy-sample.bat
# Cross-platform (PowerShell Core)
pwsh ./deploy-sample.ps1- Navigate to the desired sample folder
- Initialize azd environment:
azd init - Deploy:
azd up
Each sample includes:
azure.yaml- azd configurationinfra/- Bicep infrastructure templatessrc/- Sample application code (where applicable)README.md- Sample-specific documentation
Feel free to add more samples following the established structure.