Skip to content

Commit 710aa12

Browse files
authored
Update code fences
1 parent 8ef3b52 commit 710aa12

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/container-apps/quickstart-code-to-cloud.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To sign in to Azure from the CLI, run the following command and follow the promp
3636

3737
# [Bash](#tab/bash)
3838

39-
```azurecli
39+
```bash
4040
az login
4141
```
4242

@@ -52,7 +52,7 @@ To ensure you're running the latest version of the CLI, run the upgrade command.
5252

5353
# [Bash](#tab/bash)
5454

55-
```azurecli
55+
```bash
5656
az upgrade
5757
```
5858

@@ -69,7 +69,7 @@ Next, install or update the Azure Container Apps extension for the CLI.
6969

7070
# [Bash](#tab/bash)
7171

72-
```azurecli
72+
```bash
7373
az extension add --name containerapp --upgrade --allow-preview true
7474
```
7575

@@ -85,7 +85,7 @@ Now that the current extension is installed, register the `Microsoft.App` and `M
8585

8686
# [Bash](#tab/bash)
8787

88-
```azurecli
88+
```bash
8989
az provider register --namespace Microsoft.App
9090
az provider register --namespace Microsoft.OperationalInsights
9191
```
@@ -107,7 +107,7 @@ Now that your CLI setup is complete, you can define the environment variables th
107107

108108
Define the following variables in your bash shell.
109109

110-
```azurecli
110+
```bash
111111
export RESOURCE_GROUP="album-containerapps"
112112
export LOCATION="canadacentral"
113113
export ENVIRONMENT="env-album-containerapps"
@@ -174,7 +174,7 @@ First, run the following command to create the resource group that will contain
174174

175175
# [Bash](#tab/bash)
176176

177-
```azurecli
177+
```bash
178178
az group create --name $RESOURCE_GROUP --location $LOCATION
179179
```
180180

@@ -200,7 +200,7 @@ In the following code example, the `.` (dot) tells `containerapp up` to run in t
200200

201201
# [Bash](#tab/bash)
202202

203-
```azurecli
203+
```bash
204204
az containerapp up \
205205
--name $API_NAME \
206206
--resource-group $RESOURCE_GROUP \
@@ -228,7 +228,7 @@ To open the web API service in a web browser, run the following command.
228228

229229
# [Bash](#tab/bash)
230230

231-
```azurecli
231+
```bash
232232
az containerapp browse --name $API_NAME --resource-group $RESOURCE_GROUP
233233
```
234234

@@ -257,7 +257,7 @@ If you're not going to continue on to the [Deploy a frontend](communicate-betwee
257257
258258
# [Bash](#tab/bash)
259259

260-
```azurecli
260+
```bash
261261
az group delete --name $RESOURCE_GROUP
262262
```
263263

0 commit comments

Comments
 (0)