website/api/Makefile

15 lines
225 B
Makefile
Raw Normal View History

GOSRCS = $(wildcard *.go) $(wildcard */*.go)
all: api.elf
2023-11-12 17:43:23 +03:00
api.elf: $(GOSRCS)
go build -o $@
run:
API_DEBUG=true API_APP_URL=http://localhost:5173/ API_PASSWORD=test ./api.elf
2023-11-12 17:43:23 +03:00
format:
gofmt -s -w .
.PHONY: test format