mirror of
https://github.com/Balshgit/mosgortrans.git
synced 2025-09-11 13:00:40 +03:00
11 lines
205 B
Bash
11 lines
205 B
Bash
#! /bin/bash
|
|
|
|
echo "starting the bot"
|
|
|
|
gunicorn main:create_app \
|
|
--bind 0.0.0.0:8084 \
|
|
--worker-class aiohttp.GunicornWebWorker \
|
|
--timeout 150 \
|
|
--max-requests 2000 \
|
|
--max-requests-jitter 400
|