mirror of
https://github.com/kodxana/madiator-docker-runpod.git
synced 2024-11-22 19:00:13 +01:00
28 lines
No EOL
836 B
JSON
28 lines
No EOL
836 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Docker: Python - Flask",
|
|
"type": "docker",
|
|
"request": "launch",
|
|
"preLaunchTask": "docker-run: debug",
|
|
"python": {
|
|
"pathMappings": [
|
|
{
|
|
"localRoot": "${workspaceFolder}",
|
|
"remoteRoot": "/app"
|
|
}
|
|
],
|
|
"projectType": "flask"
|
|
}
|
|
},
|
|
{ // this whole section was added manually to add "justMyCode": false
|
|
"name": "Python: Debug Tests",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"purpose": ["debug-test"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
}
|
|
]
|
|
} |