feat: remove TUI from README and codebase

This commit is contained in:
2026-08-18 16:24:28 +01:00
parent dc3bdfb2b1
commit ef0d6da347
13 changed files with 20 additions and 1224 deletions
+6 -16
View File
@@ -1,29 +1,19 @@
PREFIX ?= $(HOME)/.local
PROFILE_DIR = $(HOME)/.config/nono/profiles
BIN_DIR = $(PREFIX)/bin
TUI_DIR = tui
.PHONY: install uninstall validate test tui tui-build tui-install
.PHONY: install uninstall validate test
install:
@./scripts/install.sh
uninstall:
rm -f $(PROFILE_DIR)/opencode-tinfoil.json
rm -f $(BIN_DIR)/opencode
@echo "Uninstalled."
validate:
nono profile validate opencode-tinfoil
test:
$(BIN_DIR)/opencode --version
tui:
cd $(TUI_DIR) && go run .
tui-build:
cd $(TUI_DIR) && go build -buildvcs=false -o $(BIN_DIR)/nono-tui .
tui-install: tui-build
@echo "Installed nono-tui to $(BIN_DIR)/nono-tui"