diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..735d6d3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + "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", + "--port", + "8080" + ], + "justMyCode": true, + "console": "integratedTerminal", + "env": { + "PYTHONPATH": "${workspaceFolder}/src" + } + } + ] +} \ No newline at end of file