-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (25 loc) · 707 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (25 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: help install dev test lint format run clean
help:
@echo "Available commands:"
@echo " make dev Install all dependencies"
@echo " make install Install production dependencies only"
@echo " make run Start the MCP server"
@echo " make test Run tests"
@echo " make lint Check code style"
@echo " make format Auto-format code"
@echo " make clean Remove build artifacts"
install:
uv sync --no-dev
dev:
uv sync
test:
uv run pytest
lint:
uv run ruff check src tests
format:
uv run ruff format src tests
uv run ruff check --fix src tests
run:
uv run concisr
clean:
rm -rf .venv .ruff_cache .pytest_cache __pycache__ src/**/__pycache__ tests/__pycache__