2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-04-13 06:48:44 +00:00

Worker debugging (#11677)

* Add debugging info for background workers to the devcontainer docs

* Add debugging info the the EventMixin docs

* Add an option to set sync=True to launch.json
This commit is contained in:
gunstr
2026-04-10 03:38:35 +02:00
committed by GitHub
parent 01bb113396
commit 16310617be
4 changed files with 23 additions and 3 deletions

4
.vscode/launch.json vendored
View File

@@ -36,7 +36,9 @@
"program": "${workspaceFolder}/src/backend/InvenTree/manage.py",
"args": [
"runserver",
"0.0.0.0:8000"
"0.0.0.0:8000",
// "--sync",// Synchronize worker tasks to foreground thread
// "--noreload", // disable auto-reload
],
"django": true,
"justMyCode": false