You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
168
168
169
169
# [Deploy to Linux](#tab/linux)
170
170
@@ -282,7 +282,7 @@ Azure App Service supports [**two types of credentials**](deploy-configure-crede
282
282
283
283
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:
284
284
285
-
1. From the sample project, open *views/index.pug* and change
285
+
1. From the sample project, open *views/index.ejs* and change
286
286
287
287
```html
288
288
<p>Welcome to <%= title %></p>
@@ -304,7 +304,7 @@ You can deploy changes to this app by making edits in Visual Studio Code, saving
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:
308
308
309
309
```azurecli
310
310
az webapp up
@@ -361,7 +361,7 @@ az webapp log tail
361
361
362
362
The command uses the resource group name cached in the *.azure/config* file.
363
363
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.
365
365
366
366
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.
0 commit comments