Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

DEPLOY.md

File metadata and controls

29 lines (21 loc) · 1.1 KB

Deployment Guide

Deployment steps can be found in the README.md file.

Other resources

Alternative deployment via command line

Create resource group

az group create --name "OOA-rg" --location "westus"

Create deployment group and deploy via ARM template

az deployment sub create --name "OOADeployment" --template-file "./main.bicep" --parameters resourceGroupLocation="westus"

Alternative deployment methods

Deploy everything at once

az deployment sub create --name "OOADeployment" --location "westus" --template-file "./main.bicep"

Deploy just the frontend

az deployment group create --name "OOAFrontendDeployment" --resource-group OOA-rg --template-file "./dotnetApp.bicep"

Deploy just the backend/function app

az deployment group create --name "OOAFunctionAppDeployment" --resource-group OOA-rg --template-file "./functionApp.bicep"

Teardown

If you want to delete everything created, just delete the resource group as follows:

az group delete --name "OOA-rg"