mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-01 10:49:36 -06:00
16 lines
302 B
Bash
16 lines
302 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
|
|
# Wait for migrations to complete
|
|
until [ -f /tmp/migrations_complete ]; do
|
|
echo "Procastinate is waiting for web app to start..."
|
|
sleep 2
|
|
done
|
|
|
|
rm -f /tmp/migrations_complete
|
|
|
|
exec watchfiles --filter python "python manage.py procrastinate worker"
|