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