website/api/Makefile

13 lines
204 B
Makefile
Raw Normal View History

all: server
2024-07-24 01:19:01 +03:00
server: *.go routes/*.go util/*.go global/*.go database/*.go
go build -o $@ .
2023-11-12 17:43:23 +03:00
test:
2024-07-24 01:19:01 +03:00
FRONTEND_URL=http://localhost:5173/ PASSWORD=test ./server
2023-11-12 17:43:23 +03:00
format:
gofmt -s -w .
.PHONY: test format