.gitignore 712 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.dll
  4. *.so
  5. *.dylib
  6. # Ignore vscode setting files
  7. .vscode/
  8. .idea/
  9. # Test binary, build with `go test -c`
  10. *.test
  11. # Output of the go coverage tool, specifically when used with LiteIDE
  12. *.out
  13. # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
  14. .glide/
  15. # Ignore gcs bin directory
  16. service/bin/
  17. service/pkg/
  18. *.img
  19. *.vhd
  20. *.tar.gz
  21. *.tar
  22. # Make stuff
  23. .rootfs-done
  24. bin/*
  25. rootfs/*
  26. rootfs-conv/*
  27. *.o
  28. /build/
  29. deps/*
  30. out/*
  31. # protobuf files
  32. # only files at root of the repo, otherwise this will cause issues with vendoring
  33. /protobuf/*
  34. # test results
  35. test/results
  36. # go workspace files
  37. go.work
  38. go.work.sum
  39. # keys and related artifacts
  40. *.pem
  41. *.cose