improve recovery queue insertion speed

This commit is contained in:
2026-04-25 18:07:52 -04:00
parent e0cad0a2b6
commit 3ea0dd8fc9
14 changed files with 152 additions and 69 deletions
+3 -3
View File
@@ -12,12 +12,12 @@ default:
dev:
@echo "Starting Backend (FastAPI) and Frontend (SvelteKit)..."
@trap 'kill %1' SIGINT; \
(cd backend && uv run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload) & \
(cd frontend && npm run dev)
(cd backend && uv run uvicorn app.main:app --host 0.0.0.0 --port ${PORT:-8000} --reload) & \
(cd frontend && VITE_API_URL=http://localhost:${PORT:-8000} npm run dev)
# Run just the backend
backend:
cd backend && uv run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
cd backend && uv run uvicorn app.main:app --host 0.0.0.0 --port ${PORT:-8000} --reload
# Run just the frontend
frontend: