2020-05-15 17:59:08 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
|
2023-06-05 15:44:32 +02:00
|
|
|
source /venv/bin/activate
|
|
|
|
|
2023-09-20 09:45:26 -04:00
|
|
|
# first wait for the database
|
|
|
|
umap wait_for_database
|
2020-05-15 17:59:08 +00:00
|
|
|
# then migrate the database
|
|
|
|
umap migrate
|
|
|
|
# then collect static files
|
|
|
|
umap collectstatic --noinput
|
|
|
|
# compress static files
|
|
|
|
umap compress
|
|
|
|
# run uWSGI
|
2023-06-05 12:26:50 +02:00
|
|
|
exec uwsgi --ini docker/uwsgi.ini
|