audio / .vscode /launch.json
PreciousMposa's picture
Upload 107 files
519d358 verified
{
"configurations": [
{
"name": "Containers: Python - Fastapi",
"type": "docker",
"request": "launch",
"preLaunchTask": "docker-run: debug",
"python": {
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app"
}
],
"projectType": "fastapi"
}
}
]
}