- Go upgraded to 1.25.10 (required by Wails v3) - Wails v3 installed (alpha.96) - Frontend: Svelte+Vite scaffold in frontend/ - guimain.go: Wails GUI entry point (compiled with -tags gui) - wails_service.go: stub service for Wails bindings - Verstak desktop binary builds: go build -tags gui -o verstak-gui . - CLI (./cmd/verstak/) unaffected - Legacy HTTP GUI (internal/gui/) preserved as prototype - Build: 24MB ELF binary with GTK4/WebKit2GTK-6 Build commands: CLI: go build -o verstak ./cmd/verstak/ GUI: cd frontend && npm run build && go build -tags gui -o verstak-gui .
15 lines
410 B
HTML
15 lines
410 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/wails.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<title>Wails + Svelte</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|