Add VSCode launch configuration for LiteLLM proxy debugging

This commit is contained in:
harish-berri 2026-05-05 00:15:11 +00:00
parent 675e49ed94
commit cbab96553c

24
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "LiteLLM proxy (debug)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/litellm/proxy/proxy_cli.py",
"cwd": "${workspaceFolder}",
"args": [
"--host",
"0.0.0.0",
"--config",
"test-config/dev_config.yaml",
"--port",
"4000",
"--num_workers",
"1"
],
"console": "integratedTerminal",
"justMyCode": false
}
]
}