56 lines
544 B
Plaintext
56 lines
544 B
Plaintext
|
|
# 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/
|
||
|
|
|