Files
projectreshoot/Makefile
2025-02-06 10:47:36 +11:00

19 lines
299 B
Makefile

# Makefile
.PHONY: build
BINARY_NAME=projectreshoot
build:
go mod tidy && \
templ generate && \
go generate && \
go build -ldflags="-w -s" -o ${BINARY_NAME}
dev:
templ generate --watch &\
air &\
tailwindcss -i ./static/css/input.css -o ./static/css/output.css --watch
clean:
go clean