| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # === Python ===
- __pycache__/
- *.py[cod]
- *.egg-info/
- dist/
- build/
- *.egg
- # === Virtual Environment ===
- venv/
- .venv/
- env/
- .env
- *.env.local
- # === IDE ===
- .idea/
- .vscode/
- *.swp
- *.swo
- *~
- # === OS ===
- .DS_Store
- Thumbs.db
- desktop.ini
- # === Sensitive / Credentials ===
- .env
- *.pem
- *.key
- # === Database ===
- *.db
- *.db-shm
- *.db-wal
- *.sqlite
- *.sqlite3
- # === Runtime Data ===
- conversation_history/
- large_tool_results/
- data/chat_history.db
- data/chat_history.db-shm
- data/chat_history.db-wal
- data/pdf_cache/
- # === Generated / Static ===
- static/reports/
- static/reports/*.docx
- # === Testing ===
- .pytest_cache/
- .coverage
- htmlcov/
- # === ZCode / Tools ===
- .reasonix/
- .zcode/
|