website/api/Makefile
2024-04-11 14:41:27 +03:00

8 lines
124 B
Makefile

server: *.go routes/* util/*
go build -o server .
test:
URL=http://localhost:5173/ PASSWORD=test ./server
.PHONY: test