mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-08 09:57:21 -05:00
New Commands: - Add PreviewCommand for live development server with hot reload - Add DoctorCommand for comprehensive health checks (18 checks) - Clear command descriptions distinguish build vs preview vs formats Command Clarity: - build: Build static files to disk (HTML) - preview: Start live dev server with hot reload - pdf: Build static PDF file to disk - epub: Build static EPUB file to disk Health Check Features: - System dependencies (Python, Quarto, Git, Node.js, R) - Configuration file validation - Chapter file scanning (62 chapters found) - Build artifacts status - Git repository status - File permissions check All tests passing - comprehensive CLI ready for use
10 lines
195 B
Python
10 lines
195 B
Python
"""
|
|
MLSysBook CLI Package
|
|
|
|
A modular command-line interface for building, previewing, and managing
|
|
the Machine Learning Systems textbook.
|
|
"""
|
|
|
|
__version__ = "2.0.0"
|
|
__author__ = "MLSysBook Team"
|