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
|
|
|
|
|
2024-02-19 10:03:47 +01:00
|
|
|
# collect static files
|
|
|
|
umap collectstatic --noinput
|
|
|
|
# now wait for the database
|
2023-09-20 09:45:26 -04:00
|
|
|
umap wait_for_database
|
2020-05-15 17:59:08 +00:00
|
|
|
# then migrate the database
|
|
|
|
umap migrate
|
|
|
|
# run uWSGI
|
2023-06-05 12:26:50 +02:00
|
|
|
exec uwsgi --ini docker/uwsgi.ini
|