We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74fbb87 commit ed6a2b3Copy full SHA for ed6a2b3
manage.py
@@ -14,7 +14,8 @@ def main() -> None:
14
if os.environ.get("RUN_MAIN") or os.environ.get("WERKZEUG_RUN_MAIN"):
15
import debugpy
16
17
- debugpy.listen(("0.0.0.0", 5678))
+ # Use "nosec" inline comment to ignore security check because this doesn't run in production
18
+ debugpy.listen(("0.0.0.0", 5678)) # nosec
19
print("Debugpy attached!")
20
21
try:
0 commit comments