Files
ssh/docker/ssh-server/.vscode/launch.json
marcio.fernandes ce1d7a749a
All checks were successful
/ ssh-client (push) Successful in 10s
/ ssh-server (push) Successful in 10s
feature/ssh-server (#1)
Co-authored-by: Márcio Fernandes <marcio.fernandes@outlook.pt>
Reviewed-on: #1
2025-09-07 13:50:18 +00:00

28 lines
544 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote Attach",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}/app",
"remoteRoot": "/app"
}
],
"justMyCode": false,
"preLaunchTask": "debug"
}
]
}