All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m16s
9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
python manage.py migrate --noinput
|
|
|
|
echo "Starting server..."
|
|
exec "$@"
|