Cloud Beginner
Azure App Service¶
AzureApp ServicePaaS 3 min read
Deploying web applications on Azure App Service. Configuration, scaling and CI/CD.
Deployment¶
# Azure CLI
az webapp create --resource-group myRG \
--plan myPlan --name myapp --runtime 'NODE:20-lts'
# Deploy from Git
az webapp deployment source config \
--name myapp --resource-group myRG \
--repo-url https://github.com/me/myapp \
--branch main
Configuration¶
# Environment variables
az webapp config appsettings set \
--name myapp --resource-group myRG \
--settings DATABASE_URL=postgres://... NODE_ENV=production
# Scaling
az appservice plan update --name myPlan \
--resource-group myRG --sku P1v3
az webapp update --name myapp --number-of-workers 3
Summary¶
App Service = the simplest PaaS for web apps. Ideal to start with before moving to containers.
Need Help with Implementation?¶
Our team has experience designing and implementing modern architectures. We’re happy to help.