Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 657 Bytes

File metadata and controls

12 lines (9 loc) · 657 Bytes

Deploy code to sample_appservice-app in Azure portal

Create a resource group

  • az group create --name techdirectg --location eastus

Create an App Service Plan

  • az appservice plan create --name techdAppServicePlan --resource-group techdirectg

Create a Web Application

  • az webapp create --name techdirectappserviceapplication --resource-group techdirectg --plan techdAppServicePlan

Move code into the web application