.gitignore 321 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Binaries
  2. bin/
  3. dist/
  4. *.exe
  5. *.exe~
  6. *.dll
  7. *.so
  8. *.dylib
  9. # Test binary, built with `go test -c`
  10. *.test
  11. # Output of the go coverage tool
  12. *.out
  13. # Go workspace
  14. go.work
  15. # IDE
  16. .idea/
  17. .vscode/
  18. *.swp
  19. *.swo
  20. *~
  21. # OS
  22. .DS_Store
  23. Thumbs.db
  24. # Database
  25. data/
  26. *.db
  27. *.sqlite
  28. # Logs
  29. *.log
  30. # Frontend build artifact
  31. internal/web/html/