Files
go-htmx-tailwind-example/Makefile
2023-07-31 14:56:55 -04:00

60 lines
1.1 KiB
Makefile

PACKAGES := $(shell go list ./...)
name := $(shell basename ${PWD})
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
## docker-build: build project into a docker container image
.PHONY: docker-build
docker-build: test
GOPROXY=direct docker buildx build -t ${name} .
## docker-run: run project in a container
.PHONY: docker-run
docker-run:
docker run -it --rm -p 8080:8080 ${name}
## 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