- .gitignore: add .DS_Store, *.log, *.bak, sailo-claude-backup/, .aw/, *.db, pytest_cache, test artifacts - tests/test_md2doc_integration.py: missed in Task 8 commit
31 lines
317 B
Plaintext
31 lines
317 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
firebase-debug.log
|
|
|
|
# Backups
|
|
*.bak
|
|
sailo-claude-backup/
|
|
|
|
# AW local state (PostgreSQL is source of truth)
|
|
.aw/
|
|
|
|
# Local databases
|
|
vectors.db
|
|
*.db
|
|
|
|
# Generated test artifacts
|
|
tests/_tmp_*.docx
|
|
tests/_tmp_*.pdf
|