# ContextFlow ## Quick Start ### Backend ```bash cd backend uv run --with-requirements requirements.txt uvicorn app.main:app --host 0.0.0.0 --port 8000 ``` ### Frontend ```bash cd frontend npm install # first time only npx vite --port 5174 ``` ### Nginx The production domain `contextflow.blackhao.com` reverse-proxies to `127.0.0.1:8000`.