File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 6767 devShells . default = pkgs . mkShell {
6868 buildInputs = with pkgs ; [
6969 uv
70+ just
7071 nixfmt-rfc-style
7172 ] ;
7273
Original file line number Diff line number Diff line change 1+ # Install dependencies and pre-commit hooks
12install :
23 uv sync --all-extras
34
5+ # Run ruff linting
46lint :
57 uv run ruff check .
68
9+ # Auto-fix linting issues
710lint-fix :
811 uv run ruff check --fix .
912
13+ # Run all tests
1014test :
1115 uv run pytest
1216
17+ # Run tool-specific tests
1318test-tools :
1419 uv run pytest tests
1520
21+ # Run example tests
1622test-examples :
1723 uv run pytest examples
1824
25+ # Run type checking
1926mypy :
2027 uv run mypy stackone_ai
2128
29+ # Build and serve docs locally
2230docs-serve :
2331 uv run scripts/ build_docs.py
2432 uv run mkdocs serve
2533
34+ # Build docs for deployment
2635docs-build :
2736 uv run scripts/ build_docs.py
2837 uv run mkdocs build
2938
39+ # Run MCP server inspector for debugging
3040mcp-inspector :
3141 uv sync --all-extras
3242 npx @modelcontextprotocol/ inspector stackmcp
You can’t perform that action at this time.
0 commit comments