initial commit

This commit is contained in:
Bartal Læarsson
2026-06-18 21:41:47 +01:00
commit 8e60f0472b
29 changed files with 2872 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
BINARY = zeitkort-web
.PHONY: build run clean
build:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/$(BINARY) .
run: build
./$(BINARY) -config config.json
clean:
rm -f $(BINARY)