it builds and shows the login page

This commit is contained in:
2026-05-20 12:03:28 -06:00
parent 84a5ea92a8
commit 087e845b7b
3 changed files with 67 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
.DEFAULT_GOAL := build
.PHONY:fmt vet build
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
cd web && pnpm run build
go build -v -o solopm-server ./cmd/server
test:
go test ./tests/...