From fe0437c1876e33510a3e8fd844674321f377760c Mon Sep 17 00:00:00 2001 From: Stuart Maxwell Date: Tue, 4 Jun 2024 16:56:12 +1200 Subject: [PATCH] Add vscode launch config --- .vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7024dd7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 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"], + "django": true, + "autoStartBrowser": false, + "program": "${workspaceFolder}/example/manage.py" + } + ] +}