Files
deer-flow/backend/Makefile

18 lines
285 B
Makefile
Raw Normal View History

2026-01-14 07:15:02 +08:00
install:
uv sync
dev:
uv run langgraph dev --no-browser --allow-blocking --no-reload
gateway:
uv run uvicorn src.gateway.app:app --host 0.0.0.0 --port 8001
test:
PYTHONPATH=. uv run pytest tests/ -v
2026-01-14 09:20:05 +08:00
lint:
uvx ruff check .
format:
uvx ruff check . --fix && uvx ruff format .