.gitignore 320 B

123456789101112131415161718192021222324252627282930313233
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *.pyo
  5. *.pyd
  6. *.so
  7. # Virtual envs
  8. .venv/
  9. venv/
  10. # Environment / secrets
  11. .env
  12. .env.*
  13. !.env.example
  14. # Tooling caches
  15. .pytest_cache/
  16. .mypy_cache/
  17. .ruff_cache/
  18. # Runtime outputs
  19. logs/
  20. scripts/logs/
  21. *.log
  22. *.pid
  23. *.sqlite3
  24. .atlas-maintenance.checkpoint
  25. # OS / editor
  26. .DS_Store
  27. .idea/
  28. .vscode/