Merge pull request #171 from randombk/pr-no-reload

This commit is contained in:
remsky 2025-02-21 19:59:21 -07:00 committed by GitHub
commit a6defbff18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -14,4 +14,4 @@ export WEB_PLAYER_PATH=$PROJECT_ROOT/web
# Run FastAPI with CPU extras using uv run
# Note: espeak may still require manual installation,
uv pip install -e ".[cpu]"
uv run uvicorn api.src.main:app --reload --host 0.0.0.0 --port 8880
uv run uvicorn api.src.main:app --host 0.0.0.0 --port 8880

View file

@ -13,4 +13,4 @@ export WEB_PLAYER_PATH=$PROJECT_ROOT/web
# Run FastAPI with GPU extras using uv run
uv pip install -e ".[gpu]"
uv run uvicorn api.src.main:app --reload --host 0.0.0.0 --port 8880
uv run uvicorn api.src.main:app --host 0.0.0.0 --port 8880