Makefile 297 B

12345678910111213141516
  1. build:
  2. clear
  3. go fmt ./...
  4. go build -o ./bin/gostore ./cmd/gostore/main.go
  5. strip -s ./bin/gostore
  6. upx -f ./bin/gostore
  7. dev.run:
  8. clear
  9. go fmt ./...
  10. go build -race -o ./bin_dev/gostore_dev ./cmd/gostore/main.go
  11. ./dev.sh
  12. mod:
  13. clear
  14. go get -u ./...
  15. go mod tidy -compat=1.21.1
  16. go mod vendor