8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-12-23 15:33:45 +00:00
re2o/entrypoint.sh

11 lines
137 B
Bash
Raw Normal View History

#!/bin/sh
# Migrate database
python manage.py migrate --noinput
# Collect statics
python manage.py collectstatic --noinput
exec "$@"