feat: added makefile "build" rule

next
Antonio De Lucreziis 2 years ago
parent 552c004151
commit 5094127c3d

@ -2,3 +2,9 @@
.PHONY: test .PHONY: test
test: test:
PROJECT_DIR="$(shell pwd)" go test -v ./... PROJECT_DIR="$(shell pwd)" go test -v ./...
.PHONY: build
build:
go run -v ./cmd/build
pnpm run build --emptyOutDir
go build -o ./out/bin/server ./cmd/server

Loading…
Cancel
Save