diff --git a/start_container.sh b/start_container.sh index 4c31cb1..5b5cd42 100644 --- a/start_container.sh +++ b/start_container.sh @@ -9,7 +9,7 @@ PORT=${TEUTHOLOGY_API_SERVER_PORT:-"8080"} cd /teuthology_api/src/ if [ "$DEPLOYMENT" = "development" ]; then - uvicorn main:app --reload --port $PORT --host $HOST + uvicorn teuthology_api.main:app --reload --port $PORT --host $HOST else gunicorn -c /teuthology_api/gunicorn_config.py teuthology_api.main:app fi