.gitignore 353 B

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