8 lines
148 B
Bash
Executable File
8 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Applying database migrations..."
|
|
python3 manage.py migrate --noinput
|
|
|
|
echo "Starting Django application..."
|
|
exec "$@" |