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:

  1. Create a resource group
    az group create -n <group> -l <region>
  2. Create an app service plan
    az appservice plan create -n <plan> -g <group>
  3. Create a webapp
    az webapp create -n <webapp> -g <group> -p <plan>