generated from john/python-template
23 lines
607 B
JSON
23 lines
607 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: Debug transcription app",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "debugpy",
|
|
"args": [
|
|
"-m",
|
|
"transcription",
|
|
"--host", "127.0.0.1",
|
|
"--port", "9999",
|
|
"--database.driver", "sqlite"
|
|
],
|
|
"justMyCode": true,
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PYTHONPATH": "${workspaceFolder}/src"
|
|
}
|
|
}
|
|
]
|
|
} |