2020-07-08 11:12:21 +00:00
|
|
|
#!/usr/bin/make
|
|
|
|
# Makefile readme (ru): <http://linux.yaroslavl.ru/docs/prog/gnu_make_3-79_russian_manual.html>
|
|
|
|
# Makefile readme (en): <https://www.gnu.org/software/make/manual/html_node/index.html#SEC_Contents>
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
2023-02-23 17:50:35 +00:00
|
|
|
LDFLAGS = "-s -w -X gh.tarampamp.am/error-pages/internal/version.version=$(shell git rev-parse HEAD)"
|
2020-07-08 11:12:21 +00:00
|
|
|
|
2020-07-08 17:15:53 +00:00
|
|
|
DC_RUN_ARGS = --rm --user "$(shell id -u):$(shell id -g)"
|
2020-07-08 11:12:21 +00:00
|
|
|
APP_NAME = $(notdir $(CURDIR))
|
|
|
|
|
2021-09-29 15:38:50 +00:00
|
|
|
.PHONY : help \
|
2022-01-27 12:29:49 +00:00
|
|
|
image dive build fmt lint gotest int-test test shell \
|
2021-09-29 15:38:50 +00:00
|
|
|
up down restart \
|
|
|
|
clean
|
2020-07-08 11:12:21 +00:00
|
|
|
.DEFAULT_GOAL : help
|
2021-09-29 15:38:50 +00:00
|
|
|
.SILENT : lint gotest
|
2020-07-08 11:12:21 +00:00
|
|
|
|
2021-09-29 15:38:50 +00:00
|
|
|
# This will output the help for each task. thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
|
2020-07-08 11:12:21 +00:00
|
|
|
help: ## Show this help
|
|
|
|
@printf "\033[33m%s:\033[0m\n" 'Available commands'
|
2021-09-29 15:38:50 +00:00
|
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf " \033[32m%-11s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|
2020-07-08 11:12:21 +00:00
|
|
|
|
2021-09-29 15:38:50 +00:00
|
|
|
image: ## Build docker image with app
|
|
|
|
docker build -f ./Dockerfile -t $(APP_NAME):local .
|
|
|
|
docker run --rm $(APP_NAME):local version
|
|
|
|
@printf "\n \e[30;42m %s \033[0m\n\n" 'Now you can use image like `docker run --rm -p "8080:8080/tcp" $(APP_NAME):local ...`';
|
2020-07-08 17:15:53 +00:00
|
|
|
|
2021-09-29 15:38:50 +00:00
|
|
|
dive: image ## Explore the docker image
|
|
|
|
docker run --rm -it -v "/var/run/docker.sock:/var/run/docker.sock:ro" wagoodman/dive:latest $(APP_NAME):local
|
2020-07-08 17:15:53 +00:00
|
|
|
|
2021-09-29 15:38:50 +00:00
|
|
|
build: ## Build app binary file
|
|
|
|
docker-compose run $(DC_RUN_ARGS) -e "CGO_ENABLED=0" --no-deps app go build -trimpath -ldflags $(LDFLAGS) -o ./error-pages ./cmd/error-pages/
|
|
|
|
|
|
|
|
fmt: ## Run source code formatter tools
|
|
|
|
docker-compose run $(DC_RUN_ARGS) -e "GO111MODULE=off" --no-deps app sh -c 'go get golang.org/x/tools/cmd/goimports && $$GOPATH/bin/goimports -d -w .'
|
|
|
|
docker-compose run $(DC_RUN_ARGS) --no-deps app gofmt -s -w -d .
|
|
|
|
docker-compose run $(DC_RUN_ARGS) --no-deps app go mod tidy
|
|
|
|
|
|
|
|
lint: ## Run app linters
|
|
|
|
docker-compose run --rm --no-deps golint golangci-lint run
|
|
|
|
|
|
|
|
gotest: ## Run app tests
|
|
|
|
docker-compose run $(DC_RUN_ARGS) --no-deps app go test -v -race -timeout 10s ./...
|
|
|
|
|
2022-01-27 12:29:49 +00:00
|
|
|
int-test: ## Run integration tests (docs: https://hurl.dev/docs/man-page.html#options)
|
2022-11-18 19:46:46 +00:00
|
|
|
docker-compose run --rm hurl --color --test --fail-at-end --variable host=web --variable port=8080 ./test/hurl/*.hurl
|
2022-01-27 12:29:49 +00:00
|
|
|
|
|
|
|
test: lint gotest int-test ## Run app tests and linters
|
2021-09-29 15:38:50 +00:00
|
|
|
|
|
|
|
shell: ## Start shell into container with golang
|
|
|
|
docker-compose run $(DC_RUN_ARGS) app bash
|
|
|
|
|
|
|
|
up: ## Create and start containers
|
|
|
|
docker-compose up --detach web
|
|
|
|
@printf "\n \e[30;42m %s \033[0m\n\n" 'Navigate your browser to ⇒ http://127.0.0.1:8080';
|
|
|
|
|
|
|
|
down: ## Stop all services
|
|
|
|
docker-compose down -t 5
|
|
|
|
|
|
|
|
restart: down up ## Restart all containers
|
2020-07-08 11:12:21 +00:00
|
|
|
|
2021-09-29 15:38:50 +00:00
|
|
|
clean: ## Make clean
|
|
|
|
docker-compose down -v -t 1
|
|
|
|
-docker rmi $(APP_NAME):local -f
|