summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-02-12 10:26:30 +0300
committerGrail Finder <wohilas@gmail.com>2026-02-12 10:26:30 +0300
commit8c3c2b9b23a5b41e207d5771bb365e2c391ed0ea (patch)
tree54bda61b46c4291054c46a08b2fd7f87d0ca5714 /Makefile
parente42eb9637190a2e89cf7e37cb10ca986835d9d7a (diff)
Chore: server should live in separate branch
until a usecase for it is found
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index dc8304f..9583041 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,4 @@
-.PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run noextra-server
-
+.PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run
run: setconfig
go build -tags extra -o gf-lt && ./gf-lt
@@ -10,15 +9,9 @@ build-debug:
debug: build-debug
dlv exec --headless --accept-multiclient --listen=:2345 ./gf-lt
-server: setconfig
- go build -tags extra -o gf-lt && ./gf-lt -port 3333
-
noextra-run: setconfig
go build -tags '!extra' -o gf-lt && ./gf-lt
-noextra-server: setconfig
- go build -tags '!extra' -o gf-lt && ./gf-lt -port 3333
-
setconfig:
find config.toml &>/dev/null || cp config.example.toml config.toml