6 lines
201 B
Bash
6 lines
201 B
Bash
CGO_ENABLED=0
|
|
GO111MODULE=on
|
|
GOOS=linux
|
|
go build -o ./bin/dbservice ./services/dbservice/main.go
|
|
go build -o ./bin/gateway ./services/gateway/main.go
|
|
go build -o ./bin/worker ./services/worker/main.go |