structure improvements, added makefile

This commit is contained in:
Sergey Chubaryan 2024-08-08 19:42:20 +03:00
parent 133744eb16
commit 2f74e51a9d
5 changed files with 7 additions and 0 deletions

3
.gitignore vendored
View File

@ -21,6 +21,9 @@
go.work
go.work.sum
# Binary dir
.build/
# env file
.env

4
makefile Normal file
View File

@ -0,0 +1,4 @@
all: release
release:
go build -o ./.build/release/backend main.go