14 lines
142 B
Makefile
14 lines
142 B
Makefile
|
|
.PHONY: run build test tidy
|
||
|
|
|
||
|
|
run:
|
||
|
|
go run ./cmd/server
|
||
|
|
|
||
|
|
build:
|
||
|
|
go build -o bin/server ./cmd/server
|
||
|
|
|
||
|
|
test:
|
||
|
|
go test ./...
|
||
|
|
|
||
|
|
tidy:
|
||
|
|
go mod tidy
|