production.sh 176 B

12345
  1. #!/bin/sh
  2. python3 manage.py migrate
  3. python3 manage.py collectstatic --noinput
  4. chown -R 101:101 /static
  5. gunicorn --bind :8000 --workers 2 website.wsgi:application --timeout 120