8 lines
103 B
Text
8 lines
103 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
python manage.py migrate --noinput
|
||
|
|
||
|
exec gunicorn -c etc/gunicorn.conf.py
|