# ============================================
# Docker Build Context Ignore
# ============================================

# Version control
.git
.gitignore

# IDE
.vscode
.idea
.claude
.cursor
.augment
.clinerules
.gemini
.opencode
.agents
.agent

# Python
.venv
__pycache__
*.pyc
*.pyo
*.egg-info
dist/
build/

# Node
frontend/node_modules
frontend/.next

# Environment files
.env
.env.*
!.env.example

# Docker (avoid recursive) — keep backend entrypoint and frontend server.js
docker/nginx/
docker/prometheus/

# Kubernetes
k8s/

# Runtime data
uploads/
outputs/
temp/
logs/
data/*.db
data/*.sqlite

# Test
tests/
frontend/src/test/

# Documentation
docs/
*.md
!README.md

# Landing page (separate project)
office-translator-landing-page/

# macOS
.DS_Store

# Backups
backups/

# Build artifacts
*.log
*.png
*.jpg
