Files

22 lines
523 B
JSON
Raw Permalink Normal View History

2025-10-09 11:35:08 +02:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote Attach to QGIS",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
}
],
"justMyCode": true
}
]
}