打包脚本

This commit is contained in:
zhaocy 2022-06-29 17:14:17 +08:00
parent e6f13429bf
commit 6d03d7b59c

7
build.bat Normal file
View File

@ -0,0 +1,7 @@
SET CGO_ENABLED=0
SET GOOS=windows
SET GOARCH=amd64
go build -o build/gateway.exe services/gateway/main.go
go build -o build/worker.exe services/worker/main.go
go build -o build/web.exe services/web/main.go
go build -o build/dbservice.exe services/dbservice/main.go