mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
* feat(tool): Adding license header check and apply tool * Update docs/LICENSE_HEADERS.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update scripts/license_header.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
45 lines
1.9 KiB
Makefile
45 lines
1.9 KiB
Makefile
.PHONY: help lint format install-dev serve test coverage langgraph-dev lint-frontend add-license add-license-ts add-license-all check-license check-license-ts check-license-all
|
|
|
|
help: ## Show this help message
|
|
@echo "Deer Flow - Available Make Targets:"
|
|
@echo ""
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-18s\033[0m %s\n", $$1, $$2}'
|
|
@echo ""
|
|
@echo "Usage: make <target>"
|
|
|
|
install-dev: ## Install development dependencies which could be optional for normal usage
|
|
uv pip install -e ".[dev]" && uv pip install -e ".[test]"
|
|
|
|
format: ## Format code using ruff
|
|
uv run ruff format --config pyproject.toml .
|
|
|
|
lint: ## Lint and fix code using ruff
|
|
uv run ruff check --fix --select I --config pyproject.toml .
|
|
|
|
lint-frontend: ## Lint frontend code, run tests, and check build
|
|
cd web && pnpm install --frozen-lockfile
|
|
cd web && pnpm lint
|
|
cd web && pnpm typecheck
|
|
cd web && pnpm test:run
|
|
cd web && pnpm build
|
|
|
|
serve: ## Start development server with reload
|
|
uv run server.py --reload
|
|
|
|
test: ## Run tests with pytest, need to run after 'make install-dev' for first time
|
|
uv run pytest tests/
|
|
|
|
langgraph-dev: ## Start langgraph development server
|
|
uvx --refresh --from "langgraph-cli[inmem]" --with-editable . --python 3.12 langgraph dev --allow-blocking
|
|
|
|
coverage: ## Run tests with coverage report
|
|
uv run pytest --cov=src tests/ --cov-report=term-missing --cov-report=xml
|
|
|
|
add-license-all: ## Add license headers to all Python and TypeScript files
|
|
@echo "Adding license headers to all source files..."
|
|
@uv run python scripts/license_header.py src/ tests/ server.py main.py web/src/ web/tests/ --verbose
|
|
|
|
check-license-all: ## Check if all Python and TypeScript files have license headers
|
|
@echo "Checking license headers in all source files..."
|
|
@uv run python scripts/license_header.py src/ tests/ server.py main.py web/src/ web/tests/ --check
|