| name | azure-deploy |
| description | Deploy applications to Azure App Service, Azure Functions, and Static Web Apps. USE THIS SKILL when users want to deploy, publish, host, or run their application on Azure. This skill detects application type (React, Vue, Angular, Next.js, Python, .NET, Java, etc.), recommends the optimal Azure service, provides local preview capabilities, and guides deployment. Trigger phrases include "deploy to Azure", "host on Azure", "publish to Azure", "run on Azure", "get this running in the cloud", "deploy my app", "Azure deployment", "set up Azure hosting", "deploy to App Service", "deploy to Functions", "deploy to Static Web Apps", "preview locally", "test before deploying", "what Azure service should I use", "help me deploy", etc. Also handles multi-service deployments with Azure Developer CLI (azd) and Infrastructure as Code when complexity is detected. |
Azure Deploy Skill
Deploy applications to Azure with intelligent service selection, local preview, and guided deployment workflows.
Quick Start Decision Tree
User wants to deploy → Run detection workflow below
Phase 1: Application Detection
ALWAYS start by scanning the user's project to detect the application type.
Step 1.1: Check for Existing Azure Configuration
Look for these files first (HIGH confidence signals):
| File Found | Recommendation | Action |
|---|
azure.yaml | Already configured for azd | Use azd up to deploy |
function.json or host.json | Azure Functions project | Deploy as Functions |
staticwebapp.config.json | Static Web Apps project | Deploy as SWA |
If found, skip to the appropriate deployment section.
Step 1.2: Detect Application Framework
Scan for configuration files and dependencies:
Node.js / JavaScript / TypeScript:
package.json exists →
├── next.config.js/mjs/ts → Next.js
│ ├── Has `output: 'export'` → Static Web Apps (SSG)
│ └── Has API routes or no export config → App Service (SSR)
├── nuxt.config.ts/js → Nuxt
│ ├── Has `ssr: false` or `target: 'static'` → Static Web Apps
│ └── Otherwise → App Service (SSR)
├── angular.json → Angular → Static Web Apps
├── vite.config.* → Vite-based (React/Vue/Svelte) → Static Web Apps
├── gatsby-config.js → Gatsby → Static Web Apps
├── astro.config.mjs → Astro → Static Web Apps
├── nest-cli.json → NestJS → App Service
├── Has express/fastify/koa/hapi dependency → App Service
└── No framework, just static build → Static Web Apps
Python:
requirements.txt or pyproject.toml exists →
├── function_app.py exists → Azure Functions (v2 programming model)
├── Has flask dependency → App Service
├── Has django dependency → App Service
├── Has fastapi dependency → App Service
└── Has azure-functions dependency → Azure Functions
.NET:
*.csproj or *.sln exists →
├── <AzureFunctionsVersion> in csproj → Azure Functions
├── Blazor WebAssembly project → Static Web Apps
├── ASP.NET Core web app → App Service
└── .NET API project → App Service
Java:
pom.xml or build.gradle exists →
├── Has azure-functions-* dependency → Azure Functions
├── Has spring-boot dependency → App Service
└── Standard web app → App Service
Static Only:
index.html exists + no package.json/requirements.txt →
└── Pure static site → Static Web Apps
Step 1.3: Detect Multi-Service Architecture
Check for complexity indicators that suggest azd + IaC:
Multi-service triggers:
├── Monorepo structure (frontend/, backend/, api/, packages/, apps/)
├── docker-compose.yml with multiple services
├── Multiple package.json in different subdirectories
├── Database references in config (connection strings, .env files)
├── References to Redis, Service Bus, Event Hubs, Storage queues
├── User mentions "multiple environments", "staging", "production"
└── More than one deployable component detected
If multi-service detected → Recommend azd + Infrastructure as Code
See Multi-Service Deployment Guide
Step 1.4: Confidence Assessment
After detection, assess confidence:
| Confidence | Criteria | Action |
|---|
| HIGH | Azure config file found (azure.yaml, function.json, staticwebapp.config.json) | Proceed with detected service |
| MEDIUM | Framework detected from dependencies | Explain recommendation, ask for confirmation |
| LOW | Ambiguous or no clear signals | Ask clarifying questions |
Clarifying questions for LOW confidence:
- "What type of application is this? (static website, API, full-stack, serverless functions)"
- "Does your app need server-side rendering or is it purely client-side?"
- "Will you need a database, caching, or other Azure services?"
Phase 2: Local Preview (No Azure Auth Required)
Before deploying, help users test locally.
Static Web Apps - Local Preview
npm install -g @azure/static-web-apps-cli
swa start
swa start ./dist --api-location ./api
swa start http://localhost:3000 --api-location ./api
Azure Functions - Local Preview
npm install -g azure-functions-core-tools@4
func start
func start --port 7071
App Service Apps - Local Preview
Use the framework's built-in dev server:
npm run dev
npm start
flask run
uvicorn main:app --reload
dotnet run
./mvnw spring-boot:run
See Local Preview Guide for detailed setup instructions.
Phase 3: Prerequisites & Dependency Management
ALWAYS check and install missing dependencies before proceeding.
3.1 Azure Authentication (Auto-Login)
Check login status and automatically login if needed:
if ! az account show &>/dev/null; then
echo "Not logged in to Azure. Starting login..."
az login
fi
az account show --query "{name:name, id:id}" -o table
If the user has multiple subscriptions, help them select the correct one:
az account list --query "[].{Name:name, ID:id, Default:isDefault}" -o table
az account set --subscription "<name-or-id>"
3.2 Dependency Detection & Auto-Install
Run this check first and install any missing tools:
check_deps() {
local missing=()
command -v az &>/dev/null || missing+=("azure-cli")
command -v func &>/dev/null || missing+=("azure-functions-core-tools")
command -v swa &>/dev/null || missing+=("@azure/static-web-apps-cli")
command -v azd &>/dev/null || missing+=("azd")
echo "${missing[@]}"
}
3.3 Install Missing Tools
Azure CLI (required for all deployments):
brew install azure-cli
winget install Microsoft.AzureCLI
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
Azure Functions Core Tools (for Functions projects):
npm install -g azure-functions-core-tools@4
brew tap azure/functions && brew install azure-functions-core-tools@4
winget install Microsoft.AzureFunctionsCoreTools
Static Web Apps CLI (for SWA projects):
npm install -g @azure/static-web-apps-cli
Azure Developer CLI (for multi-service/IaC):
brew install azd
winget install Microsoft.Azd
curl -fsSL https://aka.ms/install-azd.sh | bash
3.4 Project Dependencies
Detect and install project-level dependencies:
[ -f "package.json" ] && [ ! -d "node_modules" ] && npm install
[ -f "requirements.txt" ] && [ ! -d ".venv" ] && python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt
[ -f "*.csproj" ] && dotnet restore
[ -f "pom.xml" ] && mvn dependency:resolve
Phase 4: Single-Service Deployment (Azure CLI)
4.1 Static Web Apps Deployment
Create resource and deploy:
az group create --name <resource-group> --location <location>
az staticwebapp create \
--name <app-name> \
--resource-group <resource-group> \
--location <location> \
--sku Free
az staticwebapp secrets list \
--name <app-name> \
--resource-group <resource-group> \
--query "properties.apiKey" -o tsv
swa deploy ./dist \
--deployment-token <token> \
--env production
Smart defaults:
- SKU:
Free for dev/test, Standard for production
- Location: SWA has limited regions - use
centralus, eastus2, westus2, westeurope, or eastasia
See Static Web Apps Guide for detailed configuration.
4.2 Azure Functions Deployment
Create and deploy:
az group create --name <resource-group> --location <location>
az storage account create \
--name <storage-name> \
--resource-group <resource-group> \
--location <location> \
--sku Standard_LRS
az functionapp create \
--name <app-name> \
--resource-group <resource-group> \
--storage-account <storage-name> \
--consumption-plan-location <location> \
--runtime <node|python|dotnet|java> \
--runtime-version <version> \
--functions-version 4
func azure functionapp publish <app-name>
Smart defaults:
- Plan: Consumption (pay-per-execution) for most cases
- Runtime version: Latest LTS for the detected language
See Azure Functions Guide for advanced scenarios.
4.3 App Service Deployment
Create and deploy:
az group create --name <resource-group> --location <location>
az appservice plan create \
--name <plan-name> \
--resource-group <resource-group> \
--location <location> \
--sku B1 \
--is-linux
az webapp create \
--name <app-name> \
--resource-group <resource-group> \
--plan <plan-name> \
--runtime "<runtime>"
az webapp deploy \
--name <app-name> \
--resource-group <resource-group> \
--src-path <path-to-zip> \
--type zip
Runtime values by language:
- Node.js:
"NODE:18-lts", "NODE:20-lts"
- Python:
"PYTHON:3.11", "PYTHON:3.12"
- .NET:
"DOTNETCORE:8.0"
- Java:
"JAVA:17-java17"
Smart defaults:
- Plan SKU:
B1 for dev/test, P1v3 for production
- Always use Linux (
--is-linux) unless .NET Framework required
See App Service Guide for configuration options.
Phase 5: Multi-Service Deployment (azd + IaC)
When multiple services or infrastructure dependencies are detected, recommend Azure Developer CLI with Infrastructure as Code.
When to Use azd
- Multiple deployable components (frontend + API + functions)
- Needs database, cache, storage, or messaging services
- Requires consistent environments (dev, staging, production)
- Team collaboration with reproducible infrastructure
Initialize azd Project
azd init
azd init --template <template-name>
Project Structure
project/
├── azure.yaml # azd configuration
├── infra/
│ ├── main.bicep # Main infrastructure
│ ├── main.parameters.json
│ └── modules/ # Reusable modules
├── src/
│ ├── web/ # Frontend
│ └── api/ # Backend
Deploy with azd
azd up
azd provision
azd deploy
azd env new staging
azd env select staging
azd up
See Multi-Service Guide for azure.yaml configuration.
See Azure Verified Modules for Bicep module reference.
Phase 6: Azure Storage Operations
Use azure-mcp-storage to manage storage accounts, containers, and blobs during deployment workflows.
Note: These commands automatically use your current Azure CLI subscription. No need to specify subscription unless targeting a different one.
List Storage Containers
azure-mcp-storage
command: "storage_blob_container_get"
parameters:
account: "mystorageaccount"
Get Specific Container
azure-mcp-storage
command: "storage_blob_container_get"
parameters:
account: "mystorageaccount"
container: "mycontainer"
Create Container
azure-mcp-storage
command: "storage_blob_container_create"
parameters:
account: "mystorageaccount"
container: "mycontainer"
List Blobs
azure-mcp-storage
command: "storage_blob_get"
parameters:
account: "mystorageaccount"
container: "mycontainer"
See Storage Operations Guide for full documentation.
Troubleshooting Quick Reference
Common Issues
"Not logged in" errors:
az login
az account set --subscription "<name>"
"Resource group not found":
az group create --name <name> --location <location>
SWA deployment fails:
- Check build output directory is correct
- Verify deployment token is valid
- Ensure
staticwebapp.config.json is properly formatted
Functions deployment fails:
- Verify
host.json exists
- Check runtime version matches function app configuration
- Ensure storage account is accessible
App Service deployment fails:
- Verify runtime matches application
- Check startup command if using custom entry point
- Review deployment logs:
az webapp log tail --name <app> --resource-group <rg>
See Troubleshooting Guide for detailed solutions.
Reference Files
Load these guides as needed for detailed information: