nandi/oripublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/nandi/ori.git
git clone ssh://git@rickub.com/nandi/ori.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

forked from bots-garden/ori

Makefile · 48 lines · 1.6 KBMakefile Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Ori — ACP web client. `make help` lists the targets.

.PHONY: help deps build build-ui build-go test test-go test-ui run run-mock dev template desktop desktop-test clean

help: ## Show this help
	@grep -E '^[a-zA-Z_-]+:.*## ' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*## "}; {printf "  %-12s %s\n", $$1, $$2}'

deps: ## Install frontend dependencies
	cd ui && npm install

build-ui: ## Build the SPA into ui/dist
	cd ui && npm run build

build-go: ## Build the server and mock-agent binaries into bin/
	go build -o bin/ori ./cmd/ori
	go build -o bin/ori-mock-agent ./cmd/ori-mock-agent

build: build-ui build-go ## Build everything (SPA first, then the Go binary that embeds it)

test-go: ## Run the Go test suite
	go test ./...

test-ui: ## Run the frontend test suite
	cd ui && npm run test

test: test-go test-ui ## Run all tests

run: build ## Build then start the server on :8888 (Claude Code via ACP adapter)
	./bin/ori

run-mock: build ## Build then start the server with the demo mock agent (no Claude needed)
	./bin/ori --agent-cmd "bin/ori-mock-agent"

dev: ## Start the Vite dev server (expects `go run ./cmd/ori` in another terminal)
	cd ui && npm run dev

template: ## Build the k33g/ori sandbox template image (see kits/ori/README.md)
	docker build -f template/Dockerfile -t k33g/ori .

desktop: ## Build the Wails desktop shell into ori-desktop/build/bin (needs the wails CLI, see ori-desktop/README.md)
	cd ori-desktop && wails build

desktop-test: ## Run the desktop shell's pure-Go tests (no GUI toolchain needed)
	cd ori-desktop && go test ./internal/...

clean: ## Remove build artifacts
	rm -rf bin ui/dist/*
	@touch ui/dist/.gitkeep