Release 0.1.2
* Fixed 7z support. (#235) * Added 'Development Environment' into CONTRIBUTING.md * More strict verification for labels with attributes. * More strict check for values of checkbox/number type of attributes. * Added .vscode/launch.json Changes: - Fixed https://github.com/opencv/cvat/issues/14 (docker-compose down command as written in the readme does not remove volumes) - Fixed https://github.com/opencv/cvat/issues/15 (All checkboxes in temporary attributes are checked when reopening job after saving the job) - Fixed https://github.com/opencv/cvat/issues/18 (Extend contributing.md) - Fixed https://github.com/opencv/cvat/issues/19 (Using the same attribute for label twice -> Stuck)main
parent
e8b2c40330
commit
dea27248c2
@ -0,0 +1,97 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "CVAT Server",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"pythonPath": "${config:python.pythonPath}",
|
||||||
|
"program": "${workspaceRoot}/manage.py",
|
||||||
|
"args": [
|
||||||
|
"runserver",
|
||||||
|
"--noreload",
|
||||||
|
"--nothreading",
|
||||||
|
"--insecure",
|
||||||
|
"127.0.0.1:7000"
|
||||||
|
],
|
||||||
|
"debugOptions": [
|
||||||
|
"RedirectOutput",
|
||||||
|
"DjangoDebugging"
|
||||||
|
],
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"env": {},
|
||||||
|
"envFile": "${workspaceFolder}/.env",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CVAT Client",
|
||||||
|
"type": "chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"url": "http://localhost:7000/",
|
||||||
|
"disableNetworkCache":true,
|
||||||
|
"trace": true,
|
||||||
|
"showAsyncStacks": true,
|
||||||
|
"pathMapping":{
|
||||||
|
"/static/engine/": "${workspaceFolder}/cvat/apps/engine/static/engine/",
|
||||||
|
"/static/dashboard/": "${workspaceFolder}/cvat/apps/dashboard/static/dashboard/",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CVAT RQ - default",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"pythonPath": "${config:python.pythonPath}",
|
||||||
|
"program": "${workspaceRoot}/manage.py",
|
||||||
|
"args": [
|
||||||
|
"rqworker",
|
||||||
|
"default",
|
||||||
|
"--worker-class",
|
||||||
|
"cvat.simpleworker.SimpleWorker",
|
||||||
|
],
|
||||||
|
"debugOptions": [
|
||||||
|
"RedirectOutput",
|
||||||
|
"DjangoDebugging"
|
||||||
|
],
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"env": {},
|
||||||
|
"envFile": "${workspaceFolder}/.env",
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CVAT RQ - low",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"pythonPath": "${config:python.pythonPath}",
|
||||||
|
"program": "${workspaceRoot}/manage.py",
|
||||||
|
"args": [
|
||||||
|
"rqworker",
|
||||||
|
"low",
|
||||||
|
"--worker-class",
|
||||||
|
"cvat.simpleworker.SimpleWorker",
|
||||||
|
],
|
||||||
|
"debugOptions": [
|
||||||
|
"RedirectOutput",
|
||||||
|
"DjangoDebugging"
|
||||||
|
],
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"env": {},
|
||||||
|
"envFile": "${workspaceFolder}/.env",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"compounds": [
|
||||||
|
{
|
||||||
|
"name": "CVAT Debugging",
|
||||||
|
"configurations": [
|
||||||
|
"CVAT Client",
|
||||||
|
"CVAT Server",
|
||||||
|
"CVAT RQ - default",
|
||||||
|
"CVAT RQ - low",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue