.gitignore 423 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Go build output
  2. *.exe
  3. *.exe~
  4. *.dll
  5. *.so
  6. *.dylib
  7. # Go test binary & output
  8. *.test
  9. *.out
  10. *.prof
  11. # Go module cache (local vendor cache)
  12. .gomodcache/
  13. # IDE
  14. .ai-context/
  15. .cursorrules/
  16. .idea/
  17. .vscode/
  18. *.swp
  19. *.swo
  20. *~
  21. # macOS
  22. .DS_Store
  23. .AppleDouble
  24. .LSOverride
  25. # Config (may contain secrets)
  26. **/etc/**/*.*
  27. !**/etc/**/*-prod.yaml
  28. !**/etc/**/*-test.yaml
  29. !**/etc/**/*-dev.yaml
  30. # Temp / logs
  31. *.log
  32. tmp/
  33. # Debug files
  34. __debug*