website/api/Makefile

8 lines
133 B
Makefile
Raw Normal View History

2023-11-12 17:43:23 +03:00
server: *.go routes/* util/*
go build -o server .
test:
2024-04-11 16:19:41 +03:00
FRONTEND_URL=http://localhost:5173/ PASSWORD=test ./server
2023-11-12 17:43:23 +03:00
.PHONY: test