2025-01-19 12:29:05 +03:00
|
|
|
CGO_ENABLED=1
|
2024-03-05 19:47:02 +01:00
|
|
|
|
2025-01-19 12:29:05 +03:00
|
|
|
all:
|
2024-03-06 17:32:10 +01:00
|
|
|
templ generate
|
2025-01-19 12:29:05 +03:00
|
|
|
cat ./style/*.css > ./static/style.css
|
|
|
|
CGO_ENABLED=$(CGO_ENABLED) go build
|
|
|
|
|
2024-03-06 20:53:29 +01:00
|
|
|
test:
|
|
|
|
go test ./... -v
|
2025-01-19 12:29:05 +03:00
|
|
|
|
|
|
|
format:
|
|
|
|
gofmt -s -w .
|
2024-03-06 12:01:04 +01:00
|
|
|
templ fmt .
|
2025-01-19 12:29:05 +03:00
|
|
|
|
|
|
|
.PHONY: test format
|