.gitignore 373 B

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