diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ed07b32 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Python Debug: Django", + "type": "debugpy", + "python": "${workspaceFolder}/venv/bin/python", + "env": {"GEVENT_SUPPORT": "True"}, + "request": "launch", + "args": [ + "run_dev" + ], + "django": true, + "autoStartBrowser": false, + "program": "${workspaceFolder}/manage.py" + } + ] +} \ No newline at end of file