11 lines
115 B
Makefile
11 lines
115 B
Makefile
.PHONY: run test build
|
|
|
|
run:
|
|
go run ./cmd/server
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
build:
|
|
go build -o teammate ./cmd/server
|