32 lines
437 B
Makefile
32 lines
437 B
Makefile
.PHONY: build run-auth run-economy run-blueprint run-match run-social run-relay tidy lint test
|
|||
|
|
|
||
|
|
build:
|
||
|
|
go build ./cmd/...
|
||
|
|
|
||
|
|
run-auth:
|
||
|
|
go run ./cmd/auth-service
|
||
|
|
|
||
|
|
run-economy:
|
||
|
|
go run ./cmd/economy-service
|
||
|
|
|
||
|
|
run-blueprint:
|
||
|
|
go run ./cmd/blueprint-service
|
||
|
|
|
||
|
|
run-match:
|
||
|
|
go run ./cmd/match-service
|
||
|
|
|
||
|
|
run-social:
|
||
|
|
go run ./cmd/social-service
|
||
|
|
|
||
|
|
run-relay:
|
||
|
|
go run ./cmd/relay-server
|
||
|
|
|
||
|
|
tidy:
|
||
|
|
go mod tidy
|
||
|
|
|
||
|
|
lint:
|
||
|
|
go vet ./...
|
||
|
|
|
||
|
|
test:
|
||
|
|
go test ./...
|