Files
ssh/docker/ssh-server/.vscode/launch.json
Márcio Fernandes f6e6d4dba9
Some checks failed
/ build-docker-image (push) Failing after 23s
ssh server alpha
2025-09-06 23:32:31 +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"
}
]
}