Files
app-api/Makefile
T

14 lines
142 B
Makefile
Raw Normal View History

2026-05-21 15:20:12 +08:00
.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