Skip to content

Instantly share code, notes, and snippets.

@jtuz
Last active March 6, 2024 04:21
Show Gist options
  • Save jtuz/78ee61cac27b26e1ebb4a0760c537068 to your computer and use it in GitHub Desktop.
Save jtuz/78ee61cac27b26e1ebb4a0760c537068 to your computer and use it in GitHub Desktop.
Launch DAP / Remote Template
{
"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