mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-12-23 15:33:45 +00:00
11 lines
137 B
Bash
11 lines
137 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Migrate database
|
||
|
python manage.py migrate --noinput
|
||
|
|
||
|
# Collect statics
|
||
|
python manage.py collectstatic --noinput
|
||
|
|
||
|
exec "$@"
|
||
|
|