traefik-helper/.vscode/launch.json

20 lines
379 B
JSON
Raw Normal View History

2024-01-13 19:51:28 +00:00
{
"configurations": [
{
"name": "Docker: Python - General",
"type": "docker",
"request": "launch",
"preLaunchTask": "docker-run: debug",
"python": {
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app"
}
],
"projectType": "general"
}
}
]
}