mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-22 21:44:18 +02:00
- Add YouTube tutorial by Greg + Code on building remote MCP servers - Add YouTube tutorial by ZazenCodes on FastMCP best practices - Create Video Tutorials subsection under Learning Resources - Add docs command to justfile for local documentation serving 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
176 B
Makefile
12 lines
176 B
Makefile
build:
|
|
uv sync
|
|
|
|
test: build
|
|
uv run --frozen pytest -xvs tests
|
|
|
|
# Run pyright on all files
|
|
typecheck:
|
|
uv run --frozen pyright
|
|
|
|
docs:
|
|
cd docs && npx mintlify dev
|