From 3b05d0983ada0d774066e20405455030452085e4 Mon Sep 17 00:00:00 2001 From: ahosking Date: Mon, 17 Apr 2023 09:35:22 -0400 Subject: [PATCH] Add Debugger config for VS code --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..89a0480 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Django", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/api/manage.py", + "args": [ + "runserver", + "0.0.0.0:9000" + ], + "django": true, + "justMyCode": true + } + ] +} \ No newline at end of file