python uv template
# Initialize virtual environment and install dependencies
make init# Run the application
make run
# Or directly using uv
uv run python main.py# Run tests
make test
# Lint code
make lint
# Format code
make format
# Serve documentation locally
make gdoc
# Build documentation to static files
make gdoc-build
# Sub entry point for development (tools)
uv run python -m tools.some_tool- Please check developer guide for details on project structure and coding standards.