- .gitignore: extended with noise (.DS_Store, *.log, .aw/, *.db, *.bak, sailo-claude-backup/, superpowers/, agents/, scripts/, foreign docs) - CLAUDE.md: project-specific config (was untracked) - pluxee-todo.md + pluxee-todo.pdf: fixtures and sample output
37 lines
439 B
Plaintext
37 lines
439 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
|
|
|
|
# Foreign trees copied from other projects — do NOT commit
|
|
superpowers/
|
|
agents/
|
|
scripts/
|
|
docs/ARCHITECTURE_PROPOSAL.md
|