Spaces:
Running
Running
File size: 510 Bytes
f65e025 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # 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
|