Files
go-htmx-tailwind-example/Makefile
2023-06-09 21:41:47 -04:00

54 lines
997 B
Makefile

PACKAGES := $(shell go list ./...)
all: help
.PHONY: help
help: Makefile
@echo
@echo " Choose a make command to run"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo
## init: initialize project (make init module=github.com/user/project)
.PHONY: init
init:
go mod init ${module}
go install github.com/cosmtrek/air@latest
asdf reshim golang
## vet: vet code
.PHONY: vet
vet:
go vet $(PACKAGES)
## test: run unit tests
.PHONY: test
test:
go test -race -cover $(PACKAGES)
## build: build a binary
.PHONY: build
build: test
go build -o ./app -v
## dockerbuild: build project into a docker container image
.PHONY: dockerbuild
dockerbuild: test
docker-compose build
## start: build and run local project
.PHONY: start
start: build
air
## css: build tailwindcss
.PHONY: css
css:
tailwindcss -i css/input.css -o css/output.css --minify
## css-watch: watch build tailwindcss
.PHONY: css-watch
css-watch:
tailwindcss -i css/input.css -o css/output.css --watch