From 4aa78840ffe26001bc78e23c643f703b8c49f7ae Mon Sep 17 00:00:00 2001 From: Dennis Kerschus Date: Wed, 3 Mar 2021 14:34:15 +0100 Subject: [PATCH] =?UTF-8?q?Tilf=C3=B8jet=20sortering?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4fa41fe --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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}\\manage.py", + "args": [ + "runserver" + ], + "django": true + } + ] +} \ No newline at end of file