# Git
.git
.gitignore

# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
*.egg

# Virtual envs
.venv/
venv/

# Node / frontend (not needed in the Python image)
frontend/node_modules/
frontend/dist/

# Project runtime artefacts
paperminer_registry.db
extracted_models/
.env

# IDE / editor
.idea/
.vscode/
*.swp

# Tests (not needed in production image)
tests/
.pytest_cache/
.github/
