Skip to content

Commit

Permalink
add vscode launch config
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Mandic <[email protected]>
  • Loading branch information
vladmandic committed Jan 10, 2025
1 parent dc26d32 commit 2f3e7d2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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}",
]
}
]
}

0 comments on commit 2f3e7d2

Please sign in to comment.