2025-01-04 00:00:10 +03:00
|
|
|
GOSRCS = $(wildcard *.go) $(wildcard */*.go)
|
2024-07-24 01:15:37 +03:00
|
|
|
|
2025-01-04 00:00:10 +03:00
|
|
|
all: api.elf
|
2023-11-12 17:43:23 +03:00
|
|
|
|
2025-01-04 00:00:10 +03:00
|
|
|
api.elf: $(GOSRCS)
|
|
|
|
go build -o $@
|
|
|
|
|
|
|
|
run:
|
|
|
|
API_DEBUG=true API_FRONTEND_URL=http://localhost:5173/ API_PASSWORD=test ./api.elf
|
2023-11-12 17:43:23 +03:00
|
|
|
|
2024-07-24 01:15:37 +03:00
|
|
|
format:
|
|
|
|
gofmt -s -w .
|
|
|
|
|
|
|
|
.PHONY: test format
|