chore(deps): update & add Makefile

This commit is contained in:
Sun-ZhenXing
2025-08-28 14:41:00 +08:00
parent 79c5e87526
commit 660f11cccb
6 changed files with 734 additions and 712 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
.PHONY: i dev prod build update
i:
uv sync --all-extras --all-packages $(filter-out i,$(MAKECMDGOALS))
dev:
uv run --no-sync python -c "__import__('mcp_template_python.__main__').__main__.dev()" $(filter-out dev,$(MAKECMDGOALS))
prod:
uv run --no-sync python -c "__import__('mcp_template_python.__main__').__main__.main()" $(filter-out prod,$(MAKECMDGOALS))
build:
uv build $(filter-out build,$(MAKECMDGOALS))
update:
uv sync --all-extras --all-packages -U $(filter-out update,$(MAKECMDGOALS))
%:
@: