generated from coulomb/repo-seed
Fixing bridge to haskelseed
This commit is contained in:
19
Makefile
19
Makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user