skillbox/.vimspector.json

36 lines
929 B
JSON

{
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
"configurations": {
"django": {
"adapter": "debugpy",
"configuration": {
"request": "launch",
"stopOnEntry": true,
"python": "${VIRTUAL_ENV}/bin/python",
"program": "${workspaceRoot}/server/manage.py",
"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": {}
}