This commit is contained in:
Hayden 2022-12-30 12:27:44 -08:00 committed by GitHub
parent 2e51a581f0
commit e08cccb1f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ else
# Start API
if [ $WEB_GUNICORN == 'true' ]; then
if [ "$WEB_GUNICORN" == 'true' ]; then
echo "Starting Gunicorn"
gunicorn mealie.app:app -b 0.0.0.0:$GUNICORN_PORT -k uvicorn.workers.UvicornWorker -c /app/gunicorn_conf.py --preload
else