Files
app-api/Makefile
T

17 lines
232 B
Makefile
Raw Normal View History

2026-06-12 15:50:01 +08:00
.PHONY: run build test tidy swag
2026-05-21 15:20:12 +08:00
run:
go run ./cmd/server
2026-06-12 15:50:01 +08:00
build: swag
2026-05-21 15:20:12 +08:00
go build -o bin/server ./cmd/server
test:
go test ./...
tidy:
go mod tidy
2026-06-12 15:50:01 +08:00
swag:
swag init -g cmd/server/main.go -o docs --parseDependency --parseGoList