Last active
February 2, 2026 14:07
-
-
Save masterdesky/ffc463135876f1556db747610de9aff2 to your computer and use it in GitHub Desktop.
Minimal VSCode debug configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python -m debugpy --wait-for-client --listen 0.0.0.0:5678 -m <module.file> <arguments> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Python Debugger: Remote Attach", | |
| "type": "debugpy", | |
| "request": "attach", | |
| "connect": { | |
| "host": "localhost", | |
| "port": 5678 | |
| }, | |
| "pathMappings": [ | |
| { | |
| "localRoot": "${workspaceFolder}", | |
| "remoteRoot": "." | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment