django-project-structure/entrypoint.sh

7 lines
104 B
Bash
Raw Permalink Normal View History

#!/bin/sh
set -e
2023-11-25 17:42:06 +00:00
python manage.py migrate --noinput
python manage.py collectstatic --noinput
exec "$@"