2025-12-14 22:05:34 +01:00
|
|
|
.git
|
|
|
|
|
.gitignore
|
|
|
|
|
.github
|
|
|
|
|
.venv
|
|
|
|
|
.env
|
|
|
|
|
.env.*
|
|
|
|
|
__pycache__
|
|
|
|
|
*.pyc
|
|
|
|
|
*.pyo
|
|
|
|
|
.pytest_cache
|
|
|
|
|
.ruff_cache
|
|
|
|
|
.mypy_cache
|
|
|
|
|
.coverage
|
|
|
|
|
htmlcov
|
|
|
|
|
dist
|
|
|
|
|
build
|
|
|
|
|
*.egg-info
|
|
|
|
|
.tasks
|
|
|
|
|
tests
|
|
|
|
|
*.md
|
|
|
|
|
!README.md
|
|
|
|
|
Makefile
|
|
|
|
|
.pre-commit-config.yaml
|
2025-12-15 20:59:31 +01:00
|
|
|
|
|
|
|
|
# NAS recycle bin (UGREEN NAS)
|
|
|
|
|
\#recycle
|
2026-04-20 15:10:54 +02:00
|
|
|
Recycling Bin
|
|
|
|
|
|
|
|
|
|
# Panel (Next.js) build artifacts — re-generated by pnpm install / next build
|
|
|
|
|
panel/node_modules
|
|
|
|
|
panel/.next
|
|
|
|
|
panel/out
|
|
|
|
|
panel/coverage
|
|
|
|
|
panel/tsconfig.tsbuildinfo
|
|
|
|
|
|
2026-07-07 10:09:23 +02:00
|
|
|
# motion/ (HyperFrames compositions) + video-renderer (its render sidecar) —
|
2026-07-05 13:37:17 +02:00
|
|
|
# re-generated by pnpm install; each Dockerfile installs its own inside the
|
|
|
|
|
# image, and every build shares this root context, so an un-ignored
|
|
|
|
|
# node_modules here would bloat every image's build-context upload, not
|
2026-07-07 10:09:23 +02:00
|
|
|
# just video-renderer.Dockerfile's.
|
2026-07-05 13:37:17 +02:00
|
|
|
motion/node_modules
|
2026-07-07 10:09:23 +02:00
|
|
|
video-renderer/node_modules
|
2026-07-05 13:37:17 +02:00
|
|
|
|
2026-04-20 15:10:54 +02:00
|
|
|
# Local stateful data (postgres, redis, ollama, workspaces) — never in images
|
|
|
|
|
data/
|
|
|
|
|
logs/
|
|
|
|
|
*.log
|
|
|
|
|
|
2026-07-08 04:06:31 +02:00
|
|
|
# Gitignored working notes — leak into the orchestrator's COPY docs layer from
|
|
|
|
|
# a CEO working tree that has them checked out locally, causing env-dependent
|
|
|
|
|
# cache keys (docs/rag/ + docs/map/ are NOT ignored — the agent-facing corpus).
|
|
|
|
|
docs/internal/
|
|
|
|
|
|
2026-04-20 15:10:54 +02:00
|
|
|
# VCS and editor cruft
|
|
|
|
|
.idea
|
|
|
|
|
.vscode
|
|
|
|
|
.DS_Store
|