remove tui, unused
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-06-04 22:04:51 -04:00
parent 3874b2cc9d
commit 95b4fc1802
10 changed files with 15 additions and 1588 deletions

View File

@@ -1,28 +1,21 @@
.PHONY: up down run-server run-cli test
.PHONY: up down run test
GOFILES=$(shell find . -name '*.go' -o -name 'go.*')
STATICFILES=$(shell find . -name '*.js' -o -name '*.css' -o -name '*.html')
SQLFILES=$(shell find . -name '*.sql')
ifneq (,$(wildcard ./local.properties))
include local.properties
export
endif
build: server cli
build: server
run-server: build
run: build
./server
run-cli: build
./cli
server: $(GOFILES) $(STATICFILES)
go build -o server ./cmd/serve
cli: $(GOFILES) $(SQLFILES)
go build -o cli ./cmd/cli
test:
go test ./... -cover