CLI
Basic
Basic steps for creating and deploying a web app from a terminal/cloud shell.
Powershell
CLI
First you need to create your resources and groups:
- Create a resource group
az group create -n <group> -l <region> - Create an app service plan
az appservice plan create -n <plan> -g <group> - Create a webapp
az webapp create -n <webapp> -g <group> -p <plan>