#!/usr/bin/env sh set -eu export DJANGO_SETTINGS_MODULE="${DJANGO_SETTINGS_MODULE:-settings.production}" export STARTUP_COMPONENT="${STARTUP_COMPONENT:-web}" /app/docker/scripts/check-deps.sh python src/manage.py migrate --noinput exec gunicorn core.wsgi:application \ --bind "0.0.0.0:${PORT:-8000}" \ --workers "${GUNICORN_WORKERS:-3}" \ --timeout "${GUNICORN_TIMEOUT:-60}" \ --access-logfile "-" \ --error-logfile "-"