summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-02-24 08:59:34 +0300
committerGrail Finder <wohilas@gmail.com>2026-02-24 08:59:34 +0300
commit9af21895c6d15e7ab648f35acd44afc9675b54b7 (patch)
tree41df561f6a5238219bf8544fd77137889bfccc52 /Makefile
parente3bd6f219f0f108fede8bcfd8326888801edeed7 (diff)
Chore: remove cfg.ThinkUse
move cleaning image attachment to the end of chatRound fmt cleanup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9583041..b185d27 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run
+.PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run installdelve checkdelve
run: setconfig
go build -tags extra -o gf-lt && ./gf-lt
@@ -15,6 +15,12 @@ noextra-run: setconfig
setconfig:
find config.toml &>/dev/null || cp config.example.toml config.toml
+installdelve:
+ go install github.com/go-delve/delve/cmd/dlv@latest
+
+checkdelve:
+ which dlv &>/dev/null || installdelve
+
lint: ## Run linters. Use make install-linters first.
golangci-lint run -c .golangci.yml ./...