website/api/Makefile

8 lines
124 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 14:41:27 +03:00
URL=http://localhost:5173/ PASSWORD=test ./server
2023-11-12 17:43:23 +03:00
.PHONY: test