.gitignore 1.2 KB

123456789101112131415161718192021222324252627
  1. # ── Vault secrets — NEVER commit anything from vault/ except .gitignore ──────
  2. vault/*
  3. !vault/.gitignore
  4. # ── Local environment overrides — never commit ───────────────────────────────
  5. local.yml
  6. inventory/local.yml
  7. # ── Ansible generated files ───────────────────────────────────────────────────
  8. *.retry
  9. # ── Python ────────────────────────────────────────────────────────────────────
  10. __pycache__/
  11. *.pyc
  12. *.pyo
  13. .venv/
  14. venv/
  15. # ── Editor ────────────────────────────────────────────────────────────────────
  16. .idea/
  17. .vscode/
  18. *.swp
  19. *.swo
  20. # ── OS ────────────────────────────────────────────────────────────────────────
  21. .DS_Store
  22. Thumbs.db