Files
roboco/.dockerignore
T

57 lines
1.2 KiB
Plaintext
Raw Normal View History

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
# motion/ (HyperFrames compositions) + video-renderer (its render sidecar) —
# 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
# just video-renderer.Dockerfile's.
motion/node_modules
video-renderer/node_modules
2026-04-20 15:10:54 +02:00
# Local stateful data (postgres, redis, ollama, workspaces) — never in images
data/
logs/
*.log
# 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