diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..4a15bb113 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug running server", + "type": "debugpy", + "request": "launch", + "program": "${workspaceFolder}/manage.py", + "console": "integratedTerminal", + "args": [ + "runserver" + ] + } + ] +} \ No newline at end of file