5 lines
130 B
Bash
5 lines
130 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
python manage.py migrate --noinput
|
||
|
|
exec gunicorn coulomb_social.wsgi:application --bind 0.0.0.0:8000 --workers 2
|