.gitignore 661 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # === Python ===
  2. __pycache__/
  3. *.py[cod]
  4. *.egg-info/
  5. dist/
  6. build/
  7. *.egg
  8. # === Virtual Environment ===
  9. venv/
  10. .venv/
  11. env/
  12. .env
  13. *.env.local
  14. # === IDE ===
  15. .idea/
  16. .vscode/
  17. *.swp
  18. *.swo
  19. *~
  20. # === OS ===
  21. .DS_Store
  22. Thumbs.db
  23. desktop.ini
  24. # === Sensitive / Credentials ===
  25. .env
  26. *.pem
  27. *.key
  28. # === Database ===
  29. *.db
  30. *.db-shm
  31. *.db-wal
  32. *.sqlite
  33. *.sqlite3
  34. # === Runtime Data ===
  35. conversation_history/
  36. large_tool_results/
  37. data/chat_history.db
  38. data/chat_history.db-shm
  39. data/chat_history.db-wal
  40. data/pdf_cache/
  41. # === Generated / Static ===
  42. static/reports/
  43. static/reports/*.docx
  44. # === Testing ===
  45. .pytest_cache/
  46. .coverage
  47. htmlcov/
  48. # === ZCode / Tools ===
  49. .reasonix/
  50. .zcode/