We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0192ab commit 694c09fCopy full SHA for 694c09f
Makefile
@@ -8,6 +8,12 @@ alpine:
8
linux:
9
GOOS=linux GOARCH=amd64 go build -o bin/apiserver cmd/apiserver/main.go
10
GOOS=linux GOARCH=amd64 go build -o bin/gateway-agent cmd/gateway-agent/main.go
11
+ GOOS=linux GOARCH=amd64 go build -o bin/client-agent cmd/client-agent/main.go
12
+
13
+local:
14
+ go build -o bin/apiserver cmd/apiserver/main.go
15
+ go build -o bin/gateway-agent cmd/gateway-agent/main.go
16
+ go build -o bin/client-agent cmd/client-agent/main.go
17
18
local-apiserver:
19
go run ./cmd/apiserver/main.go --db-connection-uri=${DB_CONNECTION_URI} || echo "forget to export DB_CONNECTION_URL=<DSN> ?"
0 commit comments