document_agent / .dockerignore
Jai-rathore29's picture
Deploy: DocAgent backend (deterministic date-anomaly fix)
f65e025
Raw
History Blame Contribute Delete
510 Bytes
# Keep the HF Spaces / Docker build context small. Only backend/ is COPYed into
# the image, but trimming the context speeds the upload + build.
.git/
.claude/
.vercel/
# Frontend (deployed separately on Vercel)
frontend/node_modules/
frontend/.next/
# Python
backend/.venv/
backend/data/
**/__pycache__/
**/*.py[cod]
# Local model caches (models are fetched fresh at build by prefetch_models.py)
**/.cache/
**/.EasyOCR/
# Secrets / local env
**/.env
**/.env.*
!**/.env.example
# Misc
.DS_Store
Thumbs.db