#!/usr/bin/env bash .PHONY: all clean build swagger test lint run help .DEFAULT_GOAL := help VERSION := $(shell git describe --always --tags) BUILD_TIME=$(shell date '+%Y%m%d-%H%M%S') DOCKER_IMAGE_NAME="spx01/blocky" BINARY_NAME=blocky BIN_OUT_DIR=bin export PATH=$(shell go env GOPATH)/bin:$(shell echo $$PATH) all: build test lint ## Build binary (with tests) clean: ## cleans output directory $(shell rm -rf $(BIN_OUT_DIR)/*) swagger: ## creates swagger documentation as html file go install github.com/swaggo/swag/cmd/swag@v1.6.9 npm install bootprint bootprint-openapi html-inline $(shell go env GOPATH)/bin/swag init -g api/api.go $(shell) node_modules/bootprint/bin/bootprint.js openapi docs/swagger.json /tmp/swagger/ $(shell) node_modules/html-inline/bin/cmd.js /tmp/swagger/index.html > docs/swagger.html serve_docs: ## serves online docs mkdocs serve build: ## Build binary go install github.com/abice/go-enum@v0.4.0 go generate ./... go build -v -ldflags="-w -s -X github.com/0xERR0R/blocky/util.Version=${VERSION} -X github.com/0xERR0R/blocky/util.BuildTime=${BUILD_TIME}" -o $(BIN_OUT_DIR)/$(BINARY_NAME)$(BINARY_SUFFIX) test: ## run tests go test -v -coverprofile=coverage.txt -covermode=atomic -cover ./... race: ## run tests with race detector go test -race -short ./... lint: build ## run golangcli-lint checks go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.45.2 $(shell go env GOPATH)/bin/golangci-lint run run: build ## Build and run binary ./$(BIN_OUT_DIR)/$(BINARY_NAME) fmt: ## gofmt and goimports all go files find . -name '*.go' | while read -r file; do gofmt -w -s "$$file"; goimports -w "$$file"; done docker-build: ## Build docker image docker build --network=host --tag ${DOCKER_IMAGE_NAME} . help: ## Shows help @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'