mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
20 lines
327 B
Bash
20 lines
327 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Starting InvenTree worker..."
|
||
|
|
||
|
cd $INVENTREE_SRC_DIR
|
||
|
|
||
|
# Activate virtual environment
|
||
|
source inventree-docker-dev/bin/activate
|
||
|
|
||
|
sleep 5
|
||
|
|
||
|
# Wait for the database to be ready
|
||
|
cd $INVENTREE_MNG_DIR
|
||
|
python manage.py wait_for_db
|
||
|
|
||
|
sleep 10
|
||
|
|
||
|
# Now we can launch the background worker process
|
||
|
python manage.py qcluster
|