packlist/.vscode/launch.json

20 lines
No EOL
381 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Backend (Docker)",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}/backend",
"remoteRoot": "/app/backend"
}
]
}
]
}