.gitignore 327 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. logs/
  31. # Frontend build artifact
  32. internal/web/html/