File size: 190 Bytes
a49bdf2
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#!/bin/bash

export PYTHONPATH=$(pwd)

gunicorn -w 3 -k uvicorn.workers.UvicornWorker main:app --bind 0.0.0.0:7860 &
poetry run celery -A app.task_scheduler.task worker --loglevel=info

wait