Lubinas app

This commit is contained in:
2025-11-26 21:58:39 +02:00
parent 90d896e1cc
commit 5ca0600f69
638 changed files with 156 additions and 153897 deletions
+15 -9
View File
@@ -1,12 +1,18 @@
lint:
golangci-lint run -c ./golangci.yml ./...
start: lubinas
./lubinas serve
test:
go test ./... -v --cover
lubinas: $(shell find . -name "*.go") ui/dist lubinui/dist
go build -o lubinas main.go
jstypes:
go run ./plugins/jsvm/internal/types/types.go
lubinui/dist:
mkdir -p lubinui/dist
echo Hello > lubinui/dist/index.html
test-report:
go test ./... -v --cover -coverprofile=coverage.out
go tool cover -html=coverage.out
ui/dist: ui/node_modules ui/vite.config.js ui/index.html $(shell find ui/src) $(shell find ui/public)
npm --prefix ui run build
ui/node_modules: ui/package.json
npm --prefix ui install
clean:
rm -rf ui/node_modules ui/dist lubinui/dist lubinas