Files
OCR/.gitignore
egg cd3cbea49d chore: project cleanup and prepare for dual-track processing refactor
- Removed all test files and directories
- Deleted outdated documentation (will be rewritten)
- Cleaned up temporary files, logs, and uploads
- Archived 5 completed OpenSpec proposals
- Created new dual-track-document-processing proposal with complete OpenSpec structure
  - Dual-track architecture: OCR track (PaddleOCR) + Direct track (PyMuPDF)
  - UnifiedDocument model for consistent output
  - Support for structure-preserving translation
- Updated .gitignore to prevent future test/temp files

This is a major cleanup preparing for the complete refactoring of the document processing pipeline.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-18 20:02:31 +08:00

101 lines
1.1 KiB
Plaintext

# Tool_OCR - Git Ignore Configuration
# ===== Python =====
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# ===== Virtual Environments =====
venv/
ENV/
env/
.venv
# ===== Conda =====
.conda/
# ===== IDE =====
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# ===== Environment Variables =====
.env.local
.env.*.local
# ===== Logs =====
logs/
*.log
# ===== Uploads and Temporary Files =====
uploads/
storage/
temp/
# ===== Models =====
models/paddleocr/*
models/argostranslate/*
!models/.gitkeep
# ===== Database =====
*.db
*.sqlite
*.sqlite3
# ===== Testing =====
.pytest_cache/
.coverage
htmlcov/
.tox/
# ===== Frontend =====
node_modules/
dist/
.cache/
.parcel-cache/
.next/
out/
build/
# ===== macOS =====
.DS_Store
.AppleDouble
.LSOverride
# ===== Linux =====
.directory
# ===== Windows =====
Thumbs.db
ehthumbs.db
Desktop.ini
# Test and temporary files
backend/uploads/*
storage/uploads/*
storage/results/*
*.log
__pycache__/
*.bak
test_*.py