Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix debug configurations for vs code #5708

Merged
merged 1 commit into from
Feb 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"justMyCode": false,
},
{
"name": "REST API tests: Attach to RQ low",
"name": "REST API tests: Attach to RQ annotation worker",
"type": "python",
"request": "attach",
"connect": {
Expand All @@ -45,7 +45,7 @@
"justMyCode": false,
},
{
"name": "REST API tests: Attach to RQ default",
"name": "REST API tests: Attach to RQ export worker",
"type": "python",
"request": "attach",
"connect": {
Expand All @@ -64,6 +64,26 @@
],
"justMyCode": false,
},
{
"name": "REST API tests: Attach to RQ import worker",
"type": "python",
"request": "attach",
"connect": {
"host": "127.0.0.1",
"port": 9093
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/home/django/"
},
{
"localRoot": "${workspaceFolder}/.env",
"remoteRoot": "/opt/venv",
}
],
"justMyCode": false,
},
{
"type": "pwa-chrome",
"request": "launch",
Expand Down