mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 22:07:10 +00:00
e400e46360
[body] [footer(s)]
14 lines
317 B
Bash
Executable File
14 lines
317 B
Bash
Executable File
#!/bin/sh
|
|
|
|
python manage.py migrate
|
|
if [ $? -ne 0 ]; then
|
|
echo "Migration failed"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$DJANGO_CREATE_SUPERUSER" = "True" ]; then
|
|
python manage.py createsuperuser --noinput --username "$DJANGO_SUPERUSER_USERNAME" --email "$DJANGO_SUPERUSER_EMAIL" || true
|
|
fi
|
|
|
|
python manage.py init_achievments
|