diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,8 +1,15 @@ .PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run noextra-server + run: setconfig go build -tags extra -o gf-lt && ./gf-lt +build-debug: + go build -gcflags="all=-N -l" -tags extra -o gf-lt + +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 |
