Create a free Azure account, understand subscriptions and resource groups, install the Azure CLI, and deploy your first resource.
Everything in Azure lives inside a Resource Group — a logical container for related resources. Put a web app, its database, and its storage in one group. Delete the group when done and everything goes with it.
# Install: aka.ms/installazurecliwindows (or brew install azure-cli on Mac) az login az account list az account set --subscription 'Your Subscription Name' # Create a resource group az group create --name myapp-rg --location eastus # List resources in a group az resource list --resource-group myapp-rg --output table
myapp-dev-rg, myapp-prod-rg. Delete the dev group on Friday to avoid weekend charges. Create a fresh one Monday.The foundations from today carry directly into Day 2. In the next session the focus shifts to Day 2 — building directly on everything covered here.
Before moving on, verify you can answer these without looking:
Live Bootcamp
Learn this in person — 2 days, 5 cities
Thu–Fri sessions in Denver, Los Angeles, New York, Chicago, and Dallas. $1,490 per seat. June–October 2026.
Reserve Your Seat →