generated from john/python-template
27 lines
693 B
JSON
27 lines
693 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: Debug transcription app",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "debugpy",
|
|
"args": [
|
|
"-m",
|
|
"uvicorn",
|
|
"transcription.app:create_app",
|
|
"--factory",
|
|
"--host",
|
|
// "127.0.0.1",
|
|
"0.0.0.0",
|
|
"--port",
|
|
"8080"
|
|
],
|
|
"justMyCode": true,
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PYTHONPATH": "${workspaceFolder}/src"
|
|
}
|
|
}
|
|
]
|
|
} |