POSA_Copyrighter/.gitignore
유창욱 8958dd1b83 chore: pin runtime dependencies for offline air-gapped install
Add requirements.txt (numpy/opencv-python-headless/pillow — the only
third-party runtime imports) and requirements-dev.txt, plus an offline
install runbook. Ignore .coverage and wheelhouse/.
2026-06-20 18:19:08 +09:00

35 lines
458 B
Text

# Python
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
# Offline dependency wheelhouse (built on staging machine, not committed)
wheelhouse/
# Secrets & local environment (keep .env.example)
.env
.env.local
# Node
node_modules/
# Runtime data, databases, logs, generated artifacts
data/
outputs/
*.sqlite3
*.sqlite3-journal
*.log
# Temp / scratch
tmp_*
tmp_dbg_img/
# OS
.DS_Store
Thumbs.db