.gitignore 219 B

123456789101112131415161718
  1. # Ignore local development files
  2. **/.vscode
  3. **/.DS_Store
  4. # Docker Secrets, Environment Files
  5. **/secret.*
  6. **/.env
  7. # Ignore Ansible
  8. **/.ansible
  9. # Python
  10. **/__pycache__/
  11. **/*.py[cod]
  12. **/*.pyo
  13. **/*.pyd
  14. **/.venv
  15. **/venv/