Files
曾志威 30385fc34b
continuous-integration/drone Build is failing
feat: initialize syncdb web service MVP
2026-09-06 14:06:16 +08:00

10 lines
159 B
Makefile

.PHONY: test build docker
test:
go test ./...
build:
go build -trimpath -ldflags="-s -w" -o dist/syncdb ./cmd/syncdb
docker:
docker build -t syncdb:dev .