Files
doc_processer/.dockerignore

56 lines
544 B
Plaintext
Raw Normal View History

2025-12-31 17:38:32 +08:00
# Git
.git
.gitignore
# Python
.venv/
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
dist/
build/
# Testing
.pytest_cache/
.coverage
htmlcov/
test/
tests/
# Linting & IDE
.ruff_cache/
.mypy_cache/
.cursor/
.vscode/
.idea/
*.swp
*.swo
# Environment
.env
.env.*
!.env.example
# Documentation (not needed in container)
*.md
!README.md
openspec/
# Models (mounted at runtime, not built into image)
app/model/doclayout/*.pdiparams
app/model/DocLayout/
app/model/PP-DocLayout/
# Misc
*.log
*.tmp
.DS_Store
Thumbs.db
test/