9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
python manage.py migrate --noinput
|
|
exec gunicorn kboris.wsgi:application \
|
|
--bind 0.0.0.0:8080 \
|
|
--workers 2 \
|
|
--access-logfile - \
|
|
--error-logfile -
|