mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 19:46:46 +00:00
14 lines
230 B
Bash
14 lines
230 B
Bash
#!/bin/sh
|
|
|
|
echo "Starting InvenTree worker..."
|
|
|
|
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 |