phase 0 complete

This commit is contained in:
2026-08-14 11:29:11 -06:00
parent 4da16c7573
commit 85df9a208e
102 changed files with 25019 additions and 30 deletions
+10
View File
@@ -0,0 +1,10 @@
// Package web embeds the built Vue SPA (web/dist) so the Go binary can serve
// it directly. This embed fails to compile if dist is missing or empty,
// which is what forces the frontend to be built before the backend
// (see Makefile: `make build` runs `pnpm build` before `go build`).
package web
import "embed"
//go:embed all:dist
var DistFS embed.FS