Skip to content

Commit

Permalink
launch.json: replace deprecated workspaceRoot variable
Browse files Browse the repository at this point in the history
  • Loading branch information
SpecLad committed Jun 26, 2024
1 parent 8c4fc83 commit b8f156a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@
"type": "node",
"request": "launch",
"name": "ui.js: test",
"cwd": "${workspaceRoot}/tests",
"runtimeExecutable": "${workspaceRoot}/tests/node_modules/.bin/cypress",
"cwd": "${workspaceFolder}/tests",
"runtimeExecutable": "${workspaceFolder}/tests/node_modules/.bin/cypress",
"args": [
"run",
"--headless",
Expand All @@ -163,7 +163,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"env": {
"CVAT_SERVERLESS": "1",
"ALLOWED_HOSTS": "*",
Expand Down Expand Up @@ -200,7 +200,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"import",
Expand All @@ -222,7 +222,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"export",
Expand All @@ -244,7 +244,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"quality_reports",
Expand All @@ -266,7 +266,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"analytics_reports",
Expand All @@ -288,7 +288,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/rqscheduler.py",
"program": "${workspaceFolder}/rqscheduler.py",
"django": true,
"cwd": "${workspaceFolder}",
"args": [
Expand All @@ -307,7 +307,7 @@
"justMyCode": false,
"stopOnEntry": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"annotation",
Expand All @@ -326,7 +326,7 @@
"justMyCode": false,
"stopOnEntry": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"webhooks",
Expand All @@ -345,7 +345,7 @@
"stopOnEntry": false,
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"rqworker",
"cleaning",
Expand All @@ -367,7 +367,7 @@
"justMyCode": false,
"stopOnEntry": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"migrate"
],
Expand All @@ -383,7 +383,7 @@
"justMyCode": false,
"stopOnEntry": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"test",
"--settings",
Expand Down Expand Up @@ -486,7 +486,7 @@
"justMyCode": false,
"stopOnEntry": false,
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"program": "${workspaceFolder}/manage.py",
"args": [
"spectacular",
"--file",
Expand Down

0 comments on commit b8f156a

Please sign in to comment.