.gitignore 383 B

12345678910111213141516171819202122232425262728293031323334
  1. # Ignore local development files
  2. **/.vscode
  3. **/.DS_Store
  4. /AGENTS.md
  5. /docs
  6. # Docker Secrets, Environment Files
  7. **/secret.*
  8. **/.env
  9. **/.envrc
  10. **/.direnv
  11. # Ignore Ansible
  12. **/.ansible
  13. # Python
  14. **/__pycache__/
  15. **/*.py[cod]
  16. **/*.pyo
  17. **/*.pyd
  18. **/.venv
  19. **/venv/
  20. **/.ruff_cache/
  21. # Packaging
  22. *.egg-info/
  23. build/
  24. dist/
  25. # Installation tracking
  26. .installed-version
  27. # Test outputs
  28. config.yaml