umap/docker/entrypoint.sh

14 lines
255 B
Bash
Raw Normal View History

2020-05-15 12:59:08 -05:00
#!/usr/bin/env bash
set -eo pipefail
source /venv/bin/activate
# collect static files
umap collectstatic --noinput
# now wait for the database
umap wait_for_database
2020-05-15 12:59:08 -05:00
# then migrate the database
umap migrate
# run uWSGI
exec uwsgi --ini docker/uwsgi.ini