build-and-deployment
Installation
SKILL.md
Build and Deployment
Make Commands (Recommended)
Use make for deterministic, hermetic builds that work the same locally and in CI/CD:
# Show all available commands
make help
# Install dependencies
make install
# Clean build artifacts
make clean
# Build all packages in dependency order
make build-all