.gitignore 458 B

12345678910111213141516171819202122232425
  1. # Secrets and local state
  2. .env
  3. outputs/*.db
  4. outputs/*.sqlite
  5. outputs/*.sqlite3
  6. # Python
  7. __pycache__/
  8. *.py[cod]
  9. .pytest_cache/
  10. .coverage
  11. .venv/
  12. # The parent hello-agents repository has broad patterns for its own tests and
  13. # memory directories; these are intentional project source files here.
  14. !src/memory/
  15. !src/memory/**
  16. # Re-included project directories must still exclude generated bytecode.
  17. src/memory/__pycache__/
  18. tests/__pycache__/
  19. tool-output
  20. docs