bjoern
bjoern copied to clipboard
calling from command line like gunicorn in Profcfile
How we can call from command line like gunicorn...
web: gunicorn main:application --workers=13 --threads=2 --worker-connections=1000 --keep-alive=1800 --worker-class=uvicorn.workers.UvicornWorker --timeout 3600 --log-level=debug
this how we are using to call your application inside aws elastic bean stack inside the Procfile..
I am new to this, Please guide me.
I am likely super late but you could make CLI that wraps around bjoern if you want that.
You can look at how they do it here