2024-01-16 15:13:04 +00:00
|
|
|
PORT := 5000
|
|
|
|
|
|
|
|
default: build
|
|
|
|
|
2024-01-18 17:53:42 +00:00
|
|
|
build: export CGO_ENABLED=0
|
2024-01-16 15:13:04 +00:00
|
|
|
build: frontend
|
|
|
|
go build \
|
2024-01-18 17:53:42 +00:00
|
|
|
-ldflags "-s -w -X main.version=$(shell git describe --tags --always || echo dev)" \
|
2024-01-16 15:13:04 +00:00
|
|
|
-mod=readonly \
|
|
|
|
-trimpath
|
|
|
|
|
|
|
|
.PHONY: frontend
|
|
|
|
frontend: node_modules
|
2024-01-17 22:36:40 +00:00
|
|
|
git clean -fdx pkg/frontend/assets/
|
2024-01-16 15:13:04 +00:00
|
|
|
node ci/build.mjs
|
|
|
|
|
|
|
|
node_modules:
|
2024-01-18 17:53:42 +00:00
|
|
|
npm ci --include=dev
|
2024-01-16 15:13:04 +00:00
|
|
|
|
|
|
|
run: frontend
|
2024-01-18 17:53:42 +00:00
|
|
|
go run . --listen=:$(PORT)
|