Skip to content

Commit 55210eb

Browse files
Update quickstart-python.md
1 parent 8e1fafc commit 55210eb

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

articles/app-service/quickstart-python.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,45 @@ To complete this quickstart, you need:
2121
> [!NOTE]
2222
> This article contains current instructions on deploying a Python web app using Azure App Service. Python on Windows is no longer supported.
2323
24+
## Skip to the endAdd commentMore actions
25+
26+
You can quickly deploy the sample app in this tutorial using Azure Developer CLI and see it running in Azure. Just run the following commands in the [Azure Cloud Shell](https://shell.azure.com)want, and follow the prompt:
27+
28+
### [Flask](#tab/flask)
29+
30+
```bash
31+
mkdir flask-quickstart
32+
cd flask-quickstart
33+
azd init --template https://github.com/Azure-Samples/msdocs-python-flask-webapp-quickstart
34+
azd up
35+
```
36+
37+
### [Django](#tab/django)
38+
39+
```bash
40+
mkdir django-quickstart
41+
cd django-quickstart
42+
azd init --template https://github.com/Azure-Samples/msdocs-python-django-webapp-quickstart
43+
azd up
44+
```
45+
46+
### [FastAPI](#tab/fastapi)
47+
48+
```bash
49+
mkdir fastapi-quickstart
50+
cd fastapi-quickstart
51+
azd init --template https://github.com/Azure-Samples/msdocs-python-fastapi-webapp-quickstart
52+
azd up
53+
```
54+
55+
---
56+
57+
And, to delete the resources:
58+
59+
```bash
60+
azd down
61+
```
62+
2463
## Sample application
2564

2665
This quickstart can be completed using either Flask, Django, or FastAPI. A sample application in each framework is provided to help you follow along with this quickstart. Download or clone the sample application to your local workstation.

0 commit comments

Comments
 (0)