Skip to content
Christine edited this page Jan 30, 2024 · 3 revisions

Welcome to the azurecontainerapps-helloworld wiki!

$RG="reddog-rg"
$LOCATION="canadacentral"
$SUB_ID=""
 
# Follow Azure CLI prompts to authenticate to your subscription of choice
az login
az account set --subscription $SUB_ID
 
# Create resource group
az group create -n $RG -l $LOCATION
 
# Deploy all infrastructure and reddog apps
az deployment group create -n reddog -g $RG -f .\deploy\bicep\main.bicep
 
# Show outputs for bicep deployment
az deployment group show -n reddog -g $RG -o json --query properties.outputs.urls.value
Clone this wiki locally