production.sh 137 B

12345
  1. #!/bin/sh
  2. python3 manage.py migrate
  3. nginx -c /app/nginx.conf &
  4. gunicorn --bind :8000 --workers 2 project.wsgi:application --timeout 120