From cbab96553cccb442d15ca70fef815a22f423c504 Mon Sep 17 00:00:00 2001 From: harish-berri Date: Tue, 5 May 2026 00:15:11 +0000 Subject: [PATCH] Add VSCode launch configuration for LiteLLM proxy debugging --- .vscode/launch.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000000..232897bde87 --- /dev/null +++ b/.vscode/launch.json @@ -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 + } + ] +} \ No newline at end of file