Files
app-api/Makefile
T
2026-06-12 15:50:01 +08:00

17 lines
232 B
Makefile

.PHONY: run build test tidy swag
run:
go run ./cmd/server
build: swag
go build -o bin/server ./cmd/server
test:
go test ./...
tidy:
go mod tidy
swag:
swag init -g cmd/server/main.go -o docs --parseDependency --parseGoList