Skip to content

Commit 31096f3

Browse files
--html
------- cc: @msangapu-msft
1 parent af6020d commit 31096f3

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

articles/app-service/app-service-web-get-started-html.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,12 @@ git clone https://github.com/Azure-Samples/html-docs-hello-world.git
3838

3939
## Create a web app
4040

41-
Change to the directory that contains the sample code and run the `az webapp up` command.
42-
43-
In the following example, replace <app_name> with a unique app name.
41+
Change to the directory that contains the sample code and run the `az webapp up` command. In the following example, replace <app_name> with a unique app name. Static content is indicated by the `--html` flag.
4442

4543
```bash
4644
cd html-docs-hello-world
47-
```
4845

49-
```azurecli
50-
az webapp up --location westeurope --name <app_name>
46+
az webapp up --location westeurope --name <app_name> --html
5147
```
5248

5349
The `az webapp up` command does the following actions:
@@ -98,7 +94,7 @@ Save your changes and exit nano. Use the command `^O` to save and `^X` to exit.
9894

9995
You'll now redeploy the app with the same `az webapp up` command.
10096

101-
```azurecli
97+
```bash
10298
az webapp up --location westeurope --name <app_name> --html
10399
```
104100

@@ -126,7 +122,7 @@ The left menu provides different pages for configuring your app.
126122

127123
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group by running the following command in the Cloud Shell. Remember that the resource group name was automatically generated for you in the [create a web app](#create-a-web-app) step.
128124

129-
```azurecli
125+
```bash
130126
az group delete --name appsvc_rg_Windows_westeurope
131127
```
132128

0 commit comments

Comments
 (0)