Last active
March 6, 2024 04:21
-
-
Save jtuz/78ee61cac27b26e1ebb4a0760c537068 to your computer and use it in GitHub Desktop.
Launch DAP / Remote Template
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Attach to CS Backend", | |
"type": "python", | |
"request": "attach", | |
"connect": { | |
"host": "127.0.0.1", | |
"port": 5678 | |
}, | |
"pathMappings": [ | |
{ | |
"localRoot": "${workspaceFolder}", | |
"remoteRoot": "/app" | |
} | |
], | |
"logToFile": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment