prompt 10

This commit is contained in:
fabio
2026-02-22 18:01:37 +01:00
parent e069100c53
commit 81245535b3
6 changed files with 134 additions and 53 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
.PHONY: dev ui-build ui-dev test db-reset fmt
dev:
go run ./cmd/server
ui-build:
cd ui-kit && npm i && npm run build
ui-dev:
cd ui-kit && npm i && npm run dev
test:
go test ./...
db-reset:
rm -f ./data/app.db ./data/app.sqlite3
fmt:
gofmt -w $$(find ./cmd ./internal -type f -name '*.go')