5 lines
172 B
Bash
Executable file
5 lines
172 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
python manage.py migrate --noinput
|
|
python manage.py collectstatic --noinput >/dev/null 2>&1 || true
|
|
exec python manage.py runserver 0.0.0.0:8000
|