mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-14 14:21:28 +01:00
17 lines
367 B
Bash
17 lines
367 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
# Remove flag file if it exists from previous run
|
|
rm -f /tmp/migrations_complete
|
|
|
|
python manage.py collectstatic --noinput
|
|
python manage.py migrate
|
|
|
|
# Create flag file to signal migrations are complete
|
|
touch /tmp/migrations_complete
|
|
|
|
exec gunicorn WYGIWYH.wsgi:application --bind 0.0.0.0:8000 --timeout 600
|