2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-06-13 02:35:29 +00:00
(cherry picked from commit f919ca2eed)
This commit is contained in:
Oliver Walters
2021-03-24 22:42:32 +11:00
parent 3fddd8d2da
commit 92ed904907
3 changed files with 29 additions and 12 deletions

View File

@ -34,4 +34,18 @@ pip3 install -U -r requirements.txt
Most likely you are trying to run the InvenTree server from outside the context of the virtual environment where the required python libraries are installed.
Always activate the virtual environment before running server commands!
Always activate the virtual environment before running server commands!
### Background Worker "Not Running"
The background worker process must be started separately to the web-server application.
From the top-level source directory, run the following command from a separate terminal, while the server is already running:
```
invoke worker
```
!!! info "Supervisor"
A better option is to manage the background worker process using a process manager such as supervisor. Refer to the [deployment guide](../start/deploy).