From 1173b92880fcabe6ed83cd5c2fdc5e361acc51cc Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 3 Sep 2024 21:09:12 +0200 Subject: [PATCH] feat(vscode): add launch configuration for Django debugging Introduced launch.json to streamline debugging of Django applications with Visual Studio Code. This configuration sets up the Python Debugger to launch Django's runserver on port 8114, enhancing the development experience by enabling easy and efficient debugging. --- .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..4ebe2ff --- /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 Debugger: Django", + "type": "debugpy", + "request": "launch", + "args": [ + "runserver", + "8114" + ], + "django": true, + "autoStartBrowser": false, + "program": "${workspaceFolder}/manage.py" + } + ] +} \ No newline at end of file