Files
website/api/Makefile
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