Small changes

This commit is contained in:
Şhah İSMAİL 2020-09-15 15:10:09 +03:00
parent eabffa3cef
commit c79b5c4c25
Signed by: shah
GPG key ID: B2B1222785F81AA8
2 changed files with 6 additions and 3 deletions

3
.gitignore vendored
View file

@ -15,6 +15,9 @@
# Dependency directories (remove the comment below to include it) # Dependency directories (remove the comment below to include it)
# vendor/ # vendor/
# Output directories
bins/
# ---> macOS # ---> macOS
# General # General
.DS_Store .DS_Store

View file

@ -1,12 +1,12 @@
build: build:
docker-compose build docker-compose build
run: build up: build
docker-compose up docker-compose up
build-binary: build-binary:
GOOS=linux GOARCH=amd64 go build -o bins/genityapp -v cmd/* 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