topic/cleaning #4

Merged
shah merged 23 commits from topic/cleaning into master 2022-05-31 14:53:59 +00:00
2 changed files with 6 additions and 3 deletions
Showing only changes of commit c79b5c4c25 - Show all commits

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