2e2119420b
Otherwise when calling any other django command, when loading umap.urls, it will try to read the static manifest, which is not existing or not up to date yet.
13 lines
255 B
Bash
Executable file
13 lines
255 B
Bash
Executable file
#!/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
|
|
# then migrate the database
|
|
umap migrate
|
|
# run uWSGI
|
|
exec uwsgi --ini docker/uwsgi.ini
|