mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-18 20:14:44 +08:00
feat: lite deep researcher implementation
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
.PHONY: lint format install-dev serve test coverage
|
||||
|
||||
install-dev:
|
||||
uv pip install -e ".[dev]" && uv pip install -e ".[test]"
|
||||
|
||||
format:
|
||||
uv run black --preview .
|
||||
|
||||
lint:
|
||||
uv run black --check .
|
||||
|
||||
serve:
|
||||
uv run server.py
|
||||
|
||||
test:
|
||||
uv run pytest tests/
|
||||
|
||||
coverage:
|
||||
uv run pytest --cov=src tests/ --cov-report=term-missing
|
||||
Reference in New Issue
Block a user