add vscode launch config

Signed-off-by: Vladimir Mandic <mandic00@live.com>
pull/3696/head
Vladimir Mandic 2025-01-10 13:23:56 -05:00
parent dc26d32aed
commit 2f3e7d2713
1 changed files with 23 additions and 0 deletions

23
.vscode/launch.json vendored Normal file
View File

@ -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}",
]
}
]
}