Skip to content

Instantly share code, notes, and snippets.

View chrepl's full-sized avatar
👨‍💻
is typing...

alper chrepl

👨‍💻
is typing...
View GitHub Profile
@chrepl
chrepl / Makefile
Created May 2, 2023 11:44 — forked from thomaspoignant/Makefile
My ultimate Makefile for Golang Projects
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
BINARY_NAME=example
VERSION?=0.0.0
SERVICE_PORT?=3000
DOCKER_REGISTRY?= #if set it should finished by /
EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true
GREEN := $(shell tput -Txterm setaf 2)