From c79b5c4c25a1e1be2a0e2358a2c3664de58f8b98 Mon Sep 17 00:00:00 2001 From: Shah Ismail Date: Tue, 15 Sep 2020 15:10:09 +0300 Subject: [PATCH] Small changes --- .gitignore | 3 +++ Makefile | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0328870..3bf1152 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,9 @@ # Dependency directories (remove the comment below to include it) # vendor/ +# Output directories +bins/ + # ---> macOS # General .DS_Store diff --git a/Makefile b/Makefile index 2be1aff..109eb29 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ build: docker-compose build -run: build +up: build docker-compose up build-binary: GOOS=linux GOARCH=amd64 go build -o bins/genityapp -v cmd/* -Dev-run: build-binary build run +run: build-binary up -.PHONY: build-binary run build +.PHONY: build-binary run build up