mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 14:06:39 +01:00
14 lines
241 B
Bash
14 lines
241 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
|
|
|
|
exec python manage.py procrastinate worker
|