From 6997232198cfbad5e1fd7562749a26cc185b2ec9 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 29 May 2024 03:30:35 +0930 Subject: [PATCH] chore: add vscode launch for debugging app !13 --- .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 00000000..a5269777 --- /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": "Debug: Django", + "type": "debugpy", + "request": "launch", + "args": [ + "runserver", + "0.0.0.0:8002" + ], + "django": true, + "autoStartBrowser": false, + "program": "${workspaceFolder}/app/manage.py" + } + ] +} \ No newline at end of file