Files
Horeka-365-backend/resources/scripts/entrypoint-server.sh
2025-08-28 13:05:11 +05:00

8 lines
181 B
Bash

#!/bin/bash
python3 manage.py collectstatic --noinput
python3 manage.py migrate --noinput
gunicorn config.wsgi:application -b 0.0.0.0:8000 --workers $(($(nproc) * 2 + 1))
exit $?