Fixing bridge to haskelseed

This commit is contained in:
2026-06-14 19:46:06 +02:00
parent d949f3e93e
commit 6eb0b1c52f
5 changed files with 178 additions and 35 deletions

View File

@@ -1,13 +1,22 @@
.PHONY: test lint install mcp-http mcp-stop
.DEFAULT_GOAL := help
test:
.PHONY: help setup test lint install mcp-http mcp-stop
help: ## List available make targets
@awk 'BEGIN {FS = ":.*## "}; /^[a-zA-Z0-9_.-]+:.*## / {printf " %-16s %s\n", $$1, $$2}' $(MAKEFILE_LIST)
setup: ## Sync dependencies and install the bridge CLI wrapper
uv sync --all-groups
uv tool install -e . --force
test: ## Run the test suite
uv run pytest
lint:
lint: ## Run ruff lint checks
uv run ruff check .
install:
uv tool install -e .
install: ## Install the bridge CLI wrapper
uv tool install -e . --force
mcp-http: ## Start MCP server in SSE mode (default port 8002)
BRIDGE_MCP_PORT=$${BRIDGE_MCP_PORT:-8002} uv run python src/bridge/mcp_server/server.py --http