File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ apiserver() {
21
21
fi
22
22
23
23
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
25
25
elif [ " x$AUTORELOAD " = ' xFalse' ] && [ " x$SINGLE_THREAD " = ' xTrue' ]; then
26
26
python manage.py runserver --nothreading --noreload 0.0.0.0:9000
27
27
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
29
29
fi
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments