-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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 #14 (docker-compose down command as written in the readme does not remove volumes) - Fixed #15 (All checkboxes in temporary attributes are checked when reopening job after saving the job) - Fixed #18 (Extend contributing.md) - Fixed #19 (Using the same attribute for label twice -> Stuck)
- Loading branch information
Nikita Manovich
committed
Aug 7, 2018
1 parent
e8b2c40
commit dea2724
Showing
5 changed files
with
209 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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", | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters