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