-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (38 loc) · 920 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
PACKAGES := $(shell go list ./...)
name := $(shell basename ${PWD})
# Default make target
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 (e.g., make init module=github.com/user/project)
.PHONY: init
init:
@if [ ! -f go.mod ]; then \
go mod init ${module}; \
fi
go install github.com/cosmtrek/air@latest
## vet: vet the code
.PHONY: vet
vet:
go vet $(PACKAGES)
## build: build a binary
.PHONY: build
build:
go build -o ./app -v
## docker-build: build project into a Docker container image
.PHONY: docker-build
docker-build:
GOPROXY=direct docker buildx build -t ${name} .
## docker-run: run project in a Docker 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