.gitignore 348 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. !.idea/runConfigurations/
  18. .vscode/
  19. *.swp
  20. *.swo
  21. *~
  22. # OS
  23. .DS_Store
  24. Thumbs.db
  25. # Database
  26. data/
  27. *.db
  28. *.sqlite
  29. # Logs
  30. *.log
  31. # Frontend build artifact
  32. internal/web/html/