init
release-tag / release-image (push) Has been cancelled

This commit is contained in:
2026-08-14 17:42:54 +02:00
parent 18a48d2285
commit 222b5d2413
22 changed files with 3013 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
.PHONY: run test fmt build docker
run:
DATA_DIR=./data APP_ADDR=:8080 go run ./cmd/pocketwatch
build:
CGO_ENABLED=0 go build -trimpath -o pocketwatch ./cmd/pocketwatch
test:
go test ./...
fmt:
gofmt -w cmd internal
docker:
docker compose up -d --build