-
Notifications
You must be signed in to change notification settings - Fork 263
remove python devtools and AI from docs #2734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 7 commits
b0d9801
59c6f86
0996638
adccb89
a2f83c0
418f273
f2e6585
8918a4e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -34,16 +34,13 @@ In the console, you should see a similar output: | |||||||
|
|
||||||||
| ```sh | ||||||||
| [INFO] @teams/app Successfully initialized all plugins | ||||||||
| [WARNING] @teams/app.DevToolsPlugin ⚠️ Devtools is not secure and should not be used in production environments ⚠️ | ||||||||
| [INFO] @teams/app.HttpPlugin Starting HTTP server on port 3978 | ||||||||
| INFO: Started server process [6436] | ||||||||
| INFO: Waiting for application startup. | ||||||||
| [INFO] @teams/app.DevToolsPlugin available at http://localhost:3979/devtools | ||||||||
| [INFO] @teams/app.HttpPlugin listening on port 3978 🚀 | ||||||||
| [INFO] @teams/app Teams app started successfully | ||||||||
| [INFO] @teams/app.DevToolsPlugin listening on port 3979 🚀 | ||||||||
| INFO: Application startup complete.. | ||||||||
| INFO: Uvicorn running on http://0.0.0.0:3979 (Press CTRL+C to quit) | ||||||||
| INFO: Uvicorn running on http://0.0.0.0:3978 (Press CTRL+C to quit) | ||||||||
| ``` | ||||||||
|
|
||||||||
|
||||||||
| The Python quickstart starts your app's HTTP server on port `3978` only. It does not start a DevTools server on port `3979`, and there is no `/devtools` page for this runtime. |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[HIGH] This snippet still imports
AppOptionsbut no longer uses it after removingDevToolsPlugin. Drop the unused import (or show anAppOptionsusage). Also ensure the surroundinggetting-started/code-basics.mdxtemplate text (which references DevTools as already running) is updated/conditioned for Python now that DevToolsPlugin is gone.