mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
* fix: unblock concurrent threads and workspace hydration * fix: restore async title generation * fix: address PR review feedback * style: format lead agent prompt
19 lines
331 B
Makefile
19 lines
331 B
Makefile
install:
|
|
uv sync
|
|
|
|
dev:
|
|
uv run langgraph dev --no-browser --no-reload --n-jobs-per-worker 10
|
|
|
|
gateway:
|
|
PYTHONPATH=. uv run uvicorn app.gateway.app:app --host 0.0.0.0 --port 8001
|
|
|
|
test:
|
|
PYTHONPATH=. uv run pytest tests/ -v
|
|
|
|
lint:
|
|
uvx ruff check .
|
|
uvx ruff format --check .
|
|
|
|
format:
|
|
uvx ruff check . --fix && uvx ruff format .
|