Initial commit

This commit is contained in:
NABLA" d.o.o. Zenica
2025-09-23 15:44:01 +02:00
commit 0efc012190
4 changed files with 34 additions and 0 deletions

1
service/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
bin

13
service/makefile Normal file
View File

@@ -0,0 +1,13 @@
# Sane build defaults
CGO_ENABLED ?= 0
LDFLAGS ?= "-s -w"
run-%:
@go run \
cmd/$*/main.go
build-%:
@CGO_ENABLED=$(CGO_ENABLED) go build \
-ldflags $(LDFLAGS) -o bin/$* cmd/$*/main.go
.PHONY: %