Files
booking_backend/scripts/entrypoint.sh
2026-04-10 20:51:43 -05:00

7 lines
116 B
Bash

#!/usr/bin/env sh
set -e
uv run python manage.py migrate
uv run python manage.py collectstatic --noinput
exec "$@"