Skip to content

Files

Latest commit

a062952 · Jun 3, 2022

History

History
51 lines (38 loc) · 1.1 KB

container-apps-code-to-cloud-setup.md

File metadata and controls

51 lines (38 loc) · 1.1 KB
author ms.service ms.topic ms.date ms.author
craigshoemaker
container-apps
include
05/11/2022
cshoe

Define the following variables in your bash shell.

RESOURCE_GROUP="album-containerapps"
LOCATION="canadacentral"
ENVIRONMENT="env-album-containerapps"
API_NAME="album-api"
FRONTEND_NAME="album-ui"
GITHUB_USERNAME="<YOUR_GITHUB_USERNAME>"

Before you run this command, make sure to replace <YOUR_GITHUB_USERNAME> with your GitHub username.

Next, define a container registry name unique to you.

ACR_NAME="acaalbums"$GITHUB_USERNAME

Define the following variables in your PowerShell console.

$RESOURCE_GROUP="album-containerapps"
$LOCATION="canadacentral"
$ENVIRONMENT="env-album-containerapps"
$API_NAME="album-api"
$FRONTEND_NAME="album-ui"
$GITHUB_USERNAME="<YOUR_GITHUB_USERNAME>"

Before you run this command, make sure to replace <YOUR_GITHUB_USERNAME> with your GitHub username.

Next, define a container registry name unique to you.

$ACR_NAME="acaalbums"+$GITHUB_USERNAME