Tennis-AI/start.sh

8 lines
219 B
Bash
Raw Permalink Normal View History

2024-07-09 11:41:08 +00:00
#!/bin/bash
cores=$(nproc)
workers=$((cores * WORKERS_PER_CORE))
if [ $workers -gt $MAX_WORKERS ]; then
workers=$MAX_WORKERS
fi
exec gunicorn app:app -k uvicorn.workers.UvicornWorker -w $workers --bind 0.0.0.0:8000