4 lines
104 B
Bash
Executable file
4 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
set -eux
|
|
python manage.py migrate --noinput
|
|
gunicorn blog.wsgi -b 0.0.0.0:8000 --log-file -
|