Update vimspector config

This commit is contained in:
Ramon Wenger 2024-02-26 10:49:55 +01:00
parent 799e60e63a
commit d288ea42bf
1 changed files with 18 additions and 0 deletions

View File

@ -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": {}