Skip to content

Commit 2e698dc

Browse files
committed
Using the tilde standard
1 parent 1951af1 commit 2e698dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/aca/02-aca-comm/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In this module, we will add a service named `ACA Web API – Frontend` as illust
1111

1212
- Open a command-line terminal and navigate to root folder of your project.
1313
```shell
14-
cd {YourLocalPath}\TasksTracker.ContainerApps
14+
cd ~\TasksTracker.ContainerApps
1515
```
1616

1717
- From VS Code Terminal tab, open developer command prompt or PowerShell terminal in the project folder `TasksTracker.ContainerApps` and initialize the project. This will create and ASP.NET Razor Pages web app project.
@@ -136,7 +136,7 @@ This variable will contain the Base URL for the backend API deployed in the prev
136136
- From VS Code Terminal tab, open developer command prompt or PowerShell terminal and navigate to the frontend directory which hosts the `.csproj` project folder and build the project.
137137
138138
```shell
139-
cd {YourLocalPath}\TasksTracker.ContainerApps\TasksTracker.WebPortal.Frontend.Ui
139+
cd ~\TasksTracker.ContainerApps\TasksTracker.WebPortal.Frontend.Ui
140140
dotnet build
141141
```
142142
!!! note
@@ -152,7 +152,7 @@ $FRONTEND_WEBAPP_NAME="tasksmanager-frontend-webapp"
152152
- Now we will build and push the Web App project docker image to ACR. Use the below command to initiate the image build and push process using ACR. The `.` at the end of the command represents the docker build context. In our case, we need to be on the parent directory which hosts the .csproject.
153153
154154
```powershell
155-
cd {YourLocalPath}\TasksTracker.ContainerApps
155+
cd ~\TasksTracker.ContainerApps
156156
az acr build --registry $ACR_NAME --image "tasksmanager/$FRONTEND_WEBAPP_NAME" --file 'TasksTracker.WebPortal.Frontend.Ui/Dockerfile' .
157157
```
158158
Once this step is completed you can verify the results by going to the Azure portal and checking that a new repository named `tasksmanager/tasksmanager-frontend-webapp` has been created and there is a new docker image with a `latest` tag is created.

0 commit comments

Comments
 (0)