Operations¶
Documentation for building, testing, and deploying Epsilon.
Build System¶
- Build System - Module builds, dependency resolution, and caching
- EPK Integration - Enhanced package creation
CI/CD & Releases¶
- CI/CD Process - Complete guide to testing and continuous integration
- Release Process - Creating and managing releases
Distribution¶
- Distribution - Installation methods and platform support
Documentation¶
Documentation is built with MkDocs. Helper scripts are in /docs/scripts/
:
build.sh
- Build documentation locallyserve.sh
- Run development serverdeploy.sh
- Deploy to GitHub Pages
Building Documentation Locally¶
# Install dependencies
pip install -r requirements.txt
# Serve locally (with live reload)
./docs/scripts/serve.sh
# Build static site
./docs/scripts/build.sh
# Deploy to GitHub Pages (automated via workflow)
./docs/scripts/deploy.sh