mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-04-29 17:20:21 -05:00
- Remove EPUB from GitHub workflow valid formats and build steps - Remove EPUB config references from binder script - Remove EPUB rendering and compression functions from publish script - Remove EPUB file patterns from .gitignore - Update README.md to remove EPUB config reference - Update help messages to only mention HTML and PDF formats - Tested binder commands and status functionality
127 lines
2.7 KiB
Plaintext
127 lines
2.7 KiB
Plaintext
# =============================================================================
|
|
# Machine Learning Systems Book - .gitignore
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Development Environments & Tools
|
|
# -----------------------------------------------------------------------------
|
|
# Python environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.conda/
|
|
__pycache__/
|
|
|
|
# R environment
|
|
.Rproj.user/
|
|
|
|
# Editors & IDEs
|
|
.idea/
|
|
.vscode/
|
|
/.luarc.json
|
|
|
|
# macOS
|
|
.DS_Store
|
|
*.icloud
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Quarto & Book Generation
|
|
# -----------------------------------------------------------------------------
|
|
# Quarto cache and output
|
|
/.quarto/
|
|
/_book/
|
|
/book/.quarto/
|
|
|
|
# Build directory (new structure)
|
|
/build/
|
|
|
|
# macOS system files
|
|
._*
|
|
|
|
# Quarto temporary files
|
|
_quarto_test.yml
|
|
swap_quarto.bat
|
|
|
|
# Cross-reference files
|
|
**/._htmlbook_xref.json
|
|
**/._pdfbook_xref.json
|
|
|
|
# Site libraries
|
|
site_libs/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Generated Content & Build Artifacts
|
|
# -----------------------------------------------------------------------------
|
|
# HTML outputs
|
|
/index.html
|
|
contents/**/*.html
|
|
book/contents/**/*.html
|
|
|
|
# LaTeX build files
|
|
index.tex
|
|
index.aux
|
|
index.toc
|
|
index.log
|
|
index_files/
|
|
book/index.pdf
|
|
Machine-Learning-Systems.tex
|
|
Machine-Learning-Systems.log
|
|
Machine-Learning-Systems.pdf
|
|
|
|
|
|
# Book outputs
|
|
/*.ipynb
|
|
|
|
/*.pdf
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Quarto Figure & Media Generation
|
|
# -----------------------------------------------------------------------------
|
|
# Generated figures (specific to core content)
|
|
book/contents/core/**/figure-latex/
|
|
|
|
book/contents/core/**/figure-pdf/
|
|
book/contents/core/**/figure-html/
|
|
book/contents/core/**/mediabag/
|
|
|
|
# Lab-specific generated content
|
|
book/contents/labs/**/figure-latex/
|
|
|
|
book/contents/labs/**/figure-pdf/
|
|
book/contents/labs/**/mediabag/
|
|
|
|
# Any other figure directories
|
|
**/figure-latex/
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Local Development & Temporary Files
|
|
# -----------------------------------------------------------------------------
|
|
# Local workspace
|
|
locals/
|
|
|
|
# Scripts and tools
|
|
scripts/cross_refs/t5-mlsys-domain-adapted/
|
|
|
|
# Temporary and debug files
|
|
debug.log
|
|
*.log
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Project Specific
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Build artifacts and caches
|
|
._pdfbook_xref.json
|
|
._htmlbook_xref.json
|
|
.xref_cache/
|
|
index_files/
|
|
site_libs/
|
|
.gradio/
|
|
locals/
|
|
..bfg-report/
|
|
|
|
# macOS artifacts
|
|
.DS_Store
|
|
._*
|