.gitignore 584 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Reference https://github.com/github/gitignore/blob/master/Go.gitignore
  2. # Binaries for programs and plugins
  3. *.exe
  4. *.exe~
  5. *.dll
  6. *.dylib
  7. # Test binary, built with `go test -c`
  8. *.test
  9. # Output of the go coverage tool, specifically when used with LiteIDE
  10. *.out
  11. # Dependency directories (remove the comment below to include it)
  12. vendor/
  13. # Go workspace file
  14. go.work
  15. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  16. *.o
  17. *.a
  18. *.so
  19. # OS General
  20. Thumbs.db
  21. .DS_Store
  22. # project
  23. *.cert
  24. *.key
  25. *.log
  26. bin/
  27. logs/
  28. # Develop tools
  29. .vscode/
  30. .idea/
  31. *.swp
  32. # Environment
  33. .env
  34. .entc