8 lines
272 B
Batchfile
8 lines
272 B
Batchfile
SET CGO_ENABLED=0
|
|
SET GOOS=windows
|
|
SET GOARCH=amd64
|
|
cd ../
|
|
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 |