website/api/Makefile

13 lines
212 B
Makefile
Raw Normal View History

all: server
2024-10-06 17:30:25 +03:00
server: *.go routes/*.go database/*.go util/*.go config/*.go
2024-07-24 01:19:01 +03:00
go build -o $@ .
2023-11-12 17:43:23 +03:00
test:
2024-10-06 17:30:25 +03:00
API_FRONTEND_URL=http://localhost:5173/ API_PASSWORD=test ./server
2023-11-12 17:43:23 +03:00
format:
gofmt -s -w .
.PHONY: test format