website/api/Makefile
ngn e87764a4c2
documentation server and /doc route
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-16 07:46:27 +03:00

15 lines
224 B
Makefile

GOSRCS = $(wildcard *.go) $(wildcard */*.go)
all: api.elf
api.elf: $(GOSRCS)
go build -o $@
run:
API_DEBUG=true API_APP_URL=http://localhost:7002 API_PASSWORD=test ./api.elf
format:
gofmt -s -w .
.PHONY: test format