.gitignore 337 B

12345678910111213141516171819202122232425262728293031
  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. # Packaging
  18. *.egg-info/
  19. # Installation tracking
  20. .installed-version
  21. # Test outputs
  22. tests/
  23. config.yaml
  24. *~