Machines app

This commit is contained in:
Eden Kirin
2024-01-13 14:21:29 +01:00
parent 9dbbb21161
commit dd62931b16
12 changed files with 350 additions and 0 deletions

14
machines/Makefile Normal file
View File

@ -0,0 +1,14 @@
EXEC=machines-app
CONTAINER_NAME=machines-app
IMAGE_NAME=komponiranje-machines-app
run:
@air
.PHONY: build
build:
@go build -ldflags "-s -w" -o ./build/${EXEC} ./app/.
upgrade-packages:
@go get -u ./...