dumb/Makefile
ngn 7cea387f02
Some checks failed
Build and publish the docker image / build (push) Failing after 1m8s
general cleanup
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-19 12:29:05 +03:00

16 lines
196 B
Makefile

CGO_ENABLED=1
all:
templ generate
cat ./style/*.css > ./static/style.css
CGO_ENABLED=$(CGO_ENABLED) go build
test:
go test ./... -v
format:
gofmt -s -w .
templ fmt .
.PHONY: test format