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
Copy file name to clipboardExpand all lines: articles/app-service/quickstart-python.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -217,15 +217,17 @@ Having issues? Refer first to the [Troubleshooting guide](./configure-language-p
217
217
218
218
## 4 - Configure startup script
219
219
220
-
Based on the presence of certain files in your deployment, App Service automatically detects whether your app is a Django or Flask app and performs default steps to run your app. For apps based on other web frameworks like FastAPI, you need to configure a startup script for App Service to run your app; otherwise, App Service runs a default read-only app located in the *opt/defaultsite* folder. For details on how App Service runs Python apps, see [Configure a Linux Python app for Azure App Service](configure-language-python.md).
220
+
Based on the presence of certain files in a deployment, App Service automatically detects whether an app is a Django or Flask app and performs default steps to run your app. For apps based on other web frameworks like FastAPI, you need to configure a startup script for App Service to run your app; otherwise, App Service runs a default read-only app located in the *opt/defaultsite* folder.
221
+
222
+
To learn more about how App Service runs Python apps and how you can configure and customize its behavior with your app, see [Configure a Linux Python app for Azure App Service](configure-language-python.md).
221
223
222
224
### [Azure CLI](#tab/azure-cli/flask)
223
225
224
-
App Service automatically detects the presence of a Flask app. No additional configuration is needed.
226
+
App Service automatically detects the presence of a Flask app. No additional configuration is needed for this quickstart.
225
227
226
228
### [Azure CLI](#tab/azure-cli/django)
227
229
228
-
App Service automatically detects the presence of a Django app. No additional configuration is needed.
230
+
App Service automatically detects the presence of a Django app. No additional configuration is needed for this quickstart.
229
231
230
232
### [Azure CLI](#tab/azure-cli/fastapi)
231
233
@@ -250,23 +252,23 @@ az webapp restart \
250
252
251
253
### [VS Code](#tab/vscode-aztools/flask)
252
254
253
-
App Service automatically detects the presence of a Flask app. No additional configuration is needed.
255
+
App Service automatically detects the presence of a Flask app. No additional configuration is needed for this quickstart.
254
256
255
257
### [VS Code](#tab/vscode-aztools/django)
256
258
257
-
App Service automatically detects the presence of a Django app. No additional configuration is needed.
259
+
App Service automatically detects the presence of a Django app. No additional configuration is needed for this quickstart.
258
260
259
261
### [VS Code](#tab/vscode-aztools/fastapi)
260
262
261
263
Use Azure CLI or the Azure portal to configure the startup command.
262
264
263
265
### [Azure portal](#tab/azure-portal/flask)
264
266
265
-
App Service automatically detects the presence of a Flask app. No additional configuration is needed.
267
+
App Service automatically detects the presence of a Flask app. No additional configuration is needed for this quickstart.
266
268
267
269
### [Azure portal](#tab/azure-portal/django)
268
270
269
-
App Service automatically detects the presence of a Django app. No additional configuration is needed.
271
+
App Service automatically detects the presence of a Django app. No additional configuration is needed for this quickstart.
0 commit comments