diff --git a/.vimspector.json b/.vimspector.json index faa29c8c..89e18969 100644 --- a/.vimspector.json +++ b/.vimspector.json @@ -11,6 +11,24 @@ "args": ["runserver", "--noreload"], "django": true } + }, + "pytest": { + "adapter": "debugpy", + "configuration": { + "request": "launch", + "python": "${VIRTUAL_ENV}/bin/python", + "program": "${workspaceRoot}/server/manage.py", + "args": ["test", "${relativeFile}"], + "django": true + } + }, + "vue": { + "adapter": "firefox", + "configuration": { + "request": "launch", + "url": "http://127.0.0.1:8000", + "webRoot": "${workspaceFolder}/client" + } } }, "adapters": {}