From b6f945873d6d39816b6fac9724a0384a6599dbf3 Mon Sep 17 00:00:00 2001 From: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Date: Wed, 6 Mar 2024 13:54:37 -0500 Subject: [PATCH] Add shell_plus as debug launch target Super useful! --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index e6e13ac62de9..62289122564a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -101,5 +101,13 @@ "preLaunchTask": "stop awx-uwsgi and install Werkzeug", "postDebugTask": "start awx-uwsgi" }, + { + "name": "shell_plus", + "type": "debugpy", + "request": "launch", + "program": "manage.py", + "args": ["shell_plus"], + "django": true, + }, ] }