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)
# vendor/
# Output directories
bins/
# ---> macOS
# General
.DS_Store

View file

@ -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