Files
glpi-neural-brain/Makefile
jbergner b4388d1ebc
All checks were successful
release-tag / release-image (push) Successful in 2m30s
Update 6 SQLite
2026-08-05 05:23:43 +02:00

20 lines
287 B
Makefile

.PHONY: deps run test build fmt export-state
deps:
go mod download
run:
go run ./cmd/brain
test:
go test ./...
build:
CGO_ENABLED=0 go build -o bin/neural-brain ./cmd/brain
fmt:
gofmt -w cmd internal
export-state:
curl -fsS http://localhost:8090/api/state/export -o graph.db