2024-03-05 19:47:02 +01:00
|
|
|
VERSION=`git rev-parse --short HEAD`
|
|
|
|
|
2024-03-04 14:59:47 +01:00
|
|
|
gentempl:
|
2024-03-06 17:32:10 +01:00
|
|
|
command -v templ &> /dev/null || go install github.com/a-h/templ/cmd/templ@latest
|
|
|
|
esbuild:
|
|
|
|
[ ! -f ./esbuild ] && curl -fsSL https://esbuild.github.io/dl/latest | sh
|
|
|
|
build:gentempl esbuild
|
|
|
|
templ generate
|
|
|
|
cat ./style/*.css | ./esbuild --loader=css --minify > ./static/style.css
|
|
|
|
go build -ldflags="-X 'github.com/rramiachraf/dumb/data.Version=$(VERSION)' -s -w"
|
2024-03-06 20:53:29 +01:00
|
|
|
test:
|
|
|
|
go test ./... -v
|
2024-03-06 12:01:04 +01:00
|
|
|
fmt:
|
|
|
|
templ fmt .
|