15 lines
300 B
Bash
Executable file
15 lines
300 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
source /venv/bin/activate
|
|
|
|
# first wait for the database
|
|
umap wait_for_database
|
|
# then migrate the database
|
|
umap migrate
|
|
# then collect static files
|
|
umap collectstatic --noinput
|
|
# compress static files
|
|
umap compress
|
|
# run uWSGI
|
|
exec uwsgi --ini docker/uwsgi.ini
|