Skip to content

Commit 9efda7a

Browse files
committed
edits
1 parent 422ae89 commit 9efda7a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/app-service/quickstart-nodejs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ In this step, you create a starter Node.js application and make sure it runs on
6262
cd myExpressApp && npm install
6363
```
6464
65-
1. Start the development server.
65+
1. Start the development server with debug information.
6666
6767
```bash
68-
npm start
68+
DEBUG=myexpressapp:* npm start
6969
```
7070
7171
1. In a browser, navigate to `http://localhost:3000`. You should see something like this:
@@ -164,7 +164,7 @@ Before you continue, ensure that you have all the prerequisites installed and co
164164
165165
:::zone target="docs" pivot="development-environment-cli"
166166
167-
In the terminal, make sure you're in the *myExpressApp* directory, and deploy the code in your local folder (*myExpressApp*) using the `az webapp up` command:
167+
In the terminal, make sure you're in the *myExpressApp* directory, and deploy the code in your local folder (*myExpressApp*) using the [az webapp up](/cli/azure/webapp#az-webapp-up) command:
168168

169169
# [Deploy to Linux](#tab/linux)
170170

@@ -282,7 +282,7 @@ Azure App Service supports [**two types of credentials**](deploy-configure-crede
282282

283283
You can deploy changes to this app by making edits in Visual Studio Code, saving your files, and then redeploy to your Azure app. For example:
284284

285-
1. From the sample project, open *views/index.pug* and change
285+
1. From the sample project, open *views/index.ejs* and change
286286

287287
```html
288288
<p>Welcome to <%= title %></p>
@@ -304,7 +304,7 @@ You can deploy changes to this app by making edits in Visual Studio Code, saving
304304

305305
:::zone target="docs" pivot="development-environment-cli"
306306

307-
2. Save your changes, then redeploy the app using the `az webapp up` command again with no arguments:
307+
2. Save your changes, then redeploy the app using the [az webapp up](/cli/azure/webapp#az-webapp-up) command again with no arguments:
308308

309309
```azurecli
310310
az webapp up
@@ -361,7 +361,7 @@ az webapp log tail
361361
362362
The command uses the resource group name cached in the *.azure/config* file.
363363
364-
You can also include the `--logs` parameter with then `az webapp up` command to automatically open the log stream on deployment.
364+
You can also include the `--logs` parameter with then [az webapp up](/cli/azure/webapp#az-webapp-up) command to automatically open the log stream on deployment.
365365
366366
Refresh the app in the browser to generate console logs, which include messages describing HTTP requests to the app. If no output appears immediately, try again in 30 seconds.
367367

0 commit comments

Comments
 (0)