mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-15 21:23:01 -05:00
deps.py read AUTH_SECRET via os.getenv() before load_dotenv() ran, yielding None when the secret was only present in .env. Import the already-validated AUTH_SECRET from core.auth (loads dotenv first and raises if unset) instead of re-reading it. Removes the dup + ordering bug.
flowsint-api
Installation
- Install Python dependencies:
uv sync
Run
# dev
uv run uvicorn app.main:app --host 0.0.0.0 --port 5001 --reload
# prod
uv run uvicorn app.main:app --host 0.0.0.0 --port 5001