From 57a988973f24dc87971216fd9b7e2ecdee5d7a75 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 28 Jun 2026 13:25:52 -0500 Subject: [PATCH] debug config --- .vscode/launch.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .vscode/launch.json 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