Files
website/api/Makefile
ngn c287ffa086
All checks were successful
Build the docker image for the API / build (push) Successful in 2m16s
Build the docker image for the frontend application / build (push) Successful in 40s
fix showing the active link in the navbar
Signed-off-by: ngn <ngn@ngn.tf>
2025-07-11 22:00:56 +03:00

18 lines
225 B
Makefile

GOSRCS = $(wildcard *.go) $(wildcard */*.go)
all: api.elf
api.elf: $(GOSRCS)
go build -o $@
run:
WEBSITE_DEBUG=true WEBSITE_PASSWORD=test ./api.elf
format:
gofmt -s -w .
clean:
rm -f *.elf
.PHONY: test format clean