mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
11 lines
247 B
Bash
11 lines
247 B
Bash
#! /bin/bash
|
|
|
|
echo "starting chat"
|
|
|
|
gunicorn run:create_app \
|
|
-- workers ${WORKERS_COUNT} \
|
|
--bind ${APP_HOST}:${APP_PORT} \
|
|
--worker-class uvicorn.workers.UvicornWorker \
|
|
--timeout 150 \
|
|
--max-requests 2000 \
|
|
--max-requests-jitter 400 |