Files
backend-v1/resources/scripts/entrypoint-server.sh
2026-02-10 17:19:59 +05:00

18 lines
269 B
Bash

#!/bin/bash
while ! nc -z $DB_HOST $DB_PORT; do
sleep 2
echo "Waiting postgress...."
done
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 $?