dbadc3fc26
The legacy HTML report under output/report/ (match_report.html plus per-beat ref/src/compare MP4s) is now part of the repository so the remote always shows the latest preview state. Added gitignore exception. Total ~26 MB on disk; comparable to the cutter_clips assets we already track. Auto-regenerated on every match command via _regenerate_cutter_report, so this stays in sync without manual intervention. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
57 lines
901 B
Plaintext
57 lines
901 B
Plaintext
# ---------------------------------------------------------------------------
|
|
# AI Trailer Generator v2 — .gitignore
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.whl
|
|
.venv/
|
|
venv/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pytest_cache/
|
|
|
|
# Project-generated artefacts (potentially huge)
|
|
.cache/
|
|
output/
|
|
proxy/
|
|
*.mp4
|
|
*.mov
|
|
*.mxf
|
|
*.wav
|
|
*.mp3
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets / local overrides
|
|
.env
|
|
config.local.toml
|
|
|
|
# Cutter-Report assets — these MUST be tracked so the remote repo can serve
|
|
# the inline previews even without re-running the generator. Negated rules
|
|
# must come after the broader ignores above.
|
|
!output/
|
|
output/*
|
|
!output/cutter_stills/
|
|
!output/cutter_stills/**
|
|
!output/cutter_clips/
|
|
!output/cutter_clips/**
|
|
!output/report/
|
|
!output/report/**
|