From 2f3e7d27137ab26dd13e2e491139b9da63bfd84b Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 10 Jan 2025 13:23:56 -0500 Subject: [PATCH] add vscode launch config Signed-off-by: Vladimir Mandic --- .vscode/launch.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..5fe45a869 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "SD.Next VSCode Debugger", + "type": "debugpy", + "request": "launch", + "program": "launch.py", + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", + "env": { "USED_VSCODE_COMMAND_PICKARGS": "1" }, + "args": [ + "--uv", + "--quick", + "--debug", + "--docs", + "--api-log", + "--log", "vscode.log", + "${command:pickArgs}", + ] + } + ] +}