Skip to content

Commit 2f2a1aa

Browse files
Apply suggestions from code review
Co-authored-by: Paolo Salvatori <leprino@hotmail.com>
1 parent 09deb7f commit 2f2a1aa

File tree

1 file changed

+10
-27
lines changed

1 file changed

+10
-27
lines changed

src/content/docs/azure/services/web-app.mdx

Lines changed: 10 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,24 @@
11
---
2-
title: "Web App"
3-
description: Get started with Azure Web App on LocalStack
2+
title: "App Services"
3+
description: Get started with Azure App Services on LocalStack
44
template: doc
55
---
66

77
import AzureFeatureCoverage from "../../../../components/feature-coverage/AzureFeatureCoverage";
88

99
## Introduction
1010

11-
Azure Web App lets you deploy and run web applications without managing underlying infrastructure.
12-
It supports multiple runtimes, app configuration, and integration with App Service plans.
13-
Web App is useful for quickly building and testing hosted HTTP applications.
11+
Azure App Service is a fully managed platform for hosting web applications, mobile backends, and RESTful APIs without infrastructure overhead. It supports multiple runtimes including .NET, Java, Node.js, Python, and PHP on both Windows and Linux, or as custom containers. For more information, see the [App Service overview](https://learn.microsoft.com/azure/app-service/overview).
1412

15-
LocalStack for Azure allows you to build and test Web App workflows in your local environment.
13+
LocalStack for Azure provides a local environment for building and testing applications that make use of Azure App Services.
1614
The supported APIs are available on our [API Coverage section](#api-coverage), which provides information on the extent of Web App's integration with LocalStack.
1715

1816
## Getting started
1917

2018
This guide is designed for users new to Web App and assumes basic knowledge of the Azure CLI and our `azlocal` wrapper script.
2119

22-
Start your LocalStack container using your preferred method.
23-
Then start CLI interception:
20+
Launch LocalStack using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). Once the container is running, enable Azure CLI interception by running:
2421

25-
```bash
26-
azlocal start_interception
27-
```
2822

2923
### Create a resource group
3024

@@ -57,7 +51,7 @@ az appservice plan create \
5751
--name asp-web-doc89 \
5852
--resource-group rg-web-demo \
5953
--location westeurope \
60-
--sku F1
54+
--sku B1
6155
```
6256

6357
```bash title="Output"
@@ -93,7 +87,7 @@ az webapp create \
9387
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-web-demo/providers/Microsoft.Web/sites/ls-web-doc89",
9488
"type": "Microsoft.Web/sites",
9589
"location": "westeurope",
96-
"defaultHostName": "ls-web-doc89.azurewebsites.net",
90+
"defaultHostName": "ls-web-doc89.azurewebsites.azure.localhost.localstack.cloud:4566",
9791
"state": "Running",
9892
...
9993
}
@@ -128,7 +122,7 @@ az webapp config show \
128122
}
129123
```
130124

131-
Update web app configuration:
125+
Update the web app configuration:
132126

133127
```bash
134128
az webapp config set \
@@ -147,21 +141,10 @@ az webapp config set \
147141
}
148142
```
149143

150-
### Delete and verify
151-
152-
Delete the web app and verify it no longer appears:
153-
154-
```bash
155-
az webapp delete \
156-
--name ls-web-doc89 \
157-
--resource-group rg-web-demo
144+
### Configure application settings
158145

159-
az webapp list --resource-group rg-web-demo
160-
```
146+
Set an application setting that instructs the SCM endpoint to build the application during deployment:
161147

162-
```bash title="Output"
163-
[]
164-
```
165148

166149
## API Coverage
167150

0 commit comments

Comments
 (0)