Files
website-v2/.vscode/launch.json
2025-03-31 11:53:37 -07:00

21 lines
473 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Attach to Docker",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 12345
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/code"
}
]
}
]
}