
.PHONY: all
all: frontend backend

.PHONY: frontend
frontend:
	$(NPM) run build

.PHONY: backend
backend:
	go build -v -o ./out/server ./cmd/server
