Skip to content

Commit 01783ce

Browse files
committed
Update asgi path
1 parent 0080ea0 commit 01783ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ apiserver() {
2121
fi
2222

2323
if [ "x$AUTORELOAD" = 'xTrue' ] && [ "x$SINGLE_THREAD" = 'xFalse' ]; then
24-
uvicorn llmstack.asgi:application --reload --port 9000 --host 0.0.0.0 --reload-dir /code
24+
uvicorn llmstack.server.asgi:application --reload --port 9000 --host 0.0.0.0 --reload-dir /code
2525
elif [ "x$AUTORELOAD" = 'xFalse' ] && [ "x$SINGLE_THREAD" = 'xTrue' ]; then
2626
python manage.py runserver --nothreading --noreload 0.0.0.0:9000
2727
else
28-
/usr/local/bin/gunicorn llmstack.asgi:application -w 6 -b :9000 --timeout 0 -k uvicorn.workers.UvicornWorker
28+
/usr/local/bin/gunicorn llmstack.server.asgi:application -w 6 -b :9000 --timeout 0 -k uvicorn.workers.UvicornWorker
2929
fi
3030
}
3131

0 commit comments

Comments
 (0)