#!/bin/sh set -e python manage.py tailwind install --no-input python manage.py tailwind build python manage.py migrate --noinput python manage.py collectstatic --noinput exec gunicorn config.wsgi:application \ --workers 3 \ --bind 0.0.0.0:8000 \ --access-logfile - \ --error-logfile - \ --capture-output