Skip to content

Commit c906623

Browse files
authored
Merge pull request #50333 from ghogen/dev-spaces-bug-656335
Add clarification for bug # 656335
2 parents bfbf305 + 0766c4a commit c906623

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

articles/dev-spaces/includes/init-debug-assets-vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ You first need to configure your code project so VS Code will communicate with o
1616

1717
Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`.
1818

19-
This adds debug configuration for Azure Dev Spaces under the `.vscode` folder.
19+
This adds debug configuration for Azure Dev Spaces under the `.vscode` folder. This command is not to be confused with the `azds prep` command, which configures the project for deployment.
2020

2121
![](../media/common/command-palette.png)

articles/dev-spaces/quickstart-netcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ You first need to configure your code project so VS Code will communicate with t
8888

8989
Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`.
9090

91-
This adds debug configuration for Azure Dev Spaces under the `.vscode` folder.
91+
This adds debug configuration for Azure Dev Spaces under the `.vscode` folder. This command is not to be confused with the `azds prep` command, which configures the project for deployment.
9292

9393
![](./media/common/command-palette.png)
9494

articles/dev-spaces/quickstart-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ You first need to configure your code project so VS Code will communicate with o
118118

119119
Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`.
120120

121-
This adds debug configuration for Azure Dev Spaces under the `.vscode` folder.
121+
This adds debug configuration for Azure Dev Spaces under the `.vscode` folder. This command is not to be confused with the `azds prep` command, which configures the project for deployment.
122122

123123
![](./media/common/command-palette.png)
124124

articles/dev-spaces/team-development-netcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For the sake of time, let's download sample code from a GitHub repository. Go to
2727

2828
### Run *mywebapi*
2929
1. Open the folder `mywebapi` in a *separate VS Code window*.
30-
1. Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`.
30+
1. Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`. This command is not to be confused with the `azds prep` command, which configures the project for deployment.
3131
1. Hit F5, and wait for the service to build and deploy. You'll know it's ready when the VS Code debug bar appears.
3232
1. The endpoint URL will look something like http://localhost:\<portnumber\>. **Tip: The VS Code status bar will display a clickable URL.** It might seem like the container is running locally, but actually it is running in our dev space in Azure. The reason for the localhost address is because `mywebapi` has not defined any public endpoints and can only be accessed from within the Kubernetes instance. For your convenience, and to facilitate interacting with the private service from your local machine, Azure Dev Spaces creates a temporary SSH tunnel to the container running in Azure.
3333
1. When `mywebapi` is ready, open your browser to the localhost address. Append `/api/values` to the URL to invoke the default GET API for the `ValuesController`.

articles/dev-spaces/team-development-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You should already have the sample code for `mywebapi` for this guide under a fo
2727

2828
### Run *mywebapi*
2929
1. Open the folder `mywebapi` in a *separate VS Code window*.
30-
1. Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`.
30+
1. Open the **Command Palette** (using the **View | Command Palette** menu), and use auto-complete to type and select this command: `Azure Dev Spaces: Prepare configuration files for Azure Dev Spaces`. This command is not to be confused with the `azds prep` command, which configures the project for deployment.
3131
1. Hit F5, and wait for the service to build and deploy. You'll know it's ready when the VS Code debug bar appears.
3232
1. Take note of the endpoint URL, it will look something like http://localhost:\<portnumber\>. **Tip: The VS Code status bar will display a clickable URL.** It may seem like the container is running locally, but actually it is running in your development environment in Azure. The reason for the localhost address is because `mywebapi` has not defined any public endpoints and can only be accessed from within the Kubernetes instance. For your convenience, and to facilitate interacting with the private service from your local machine, Azure Dev Spaces creates a temporary SSH tunnel to the container running in Azure.
3333
1. When `mywebapi` is ready, open your browser to the localhost address. You should see a response from the `mywebapi` service ("Hello from mywebapi").

0 commit comments

Comments
 (0)