comparison gui_ze/README.md @ 279:b3b547563ec7

Add Google connector service and agent wiki Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code. Co-authored-by: Copilot <[email protected]> Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
author MrJuneJune <me@mrjunejune.com>
date Mon, 17 Aug 2026 22:22:36 -0700
parents b818a4561a3c
children
comparison
equal deleted inserted replaced
278:8d560f50ed4c 279:b3b547563ec7
1 # gui_ze 1 # gui_ze
2 2
3 Bazel rules for building GUI applications and web frontends. 3 Zenbu's Bazel/Starlark rules for frontend builds, generated assets, binary
4 bundles, and macOS application packaging.
4 5
5 ## Files 6 **Canonical documentation:** [`wiki/README.md`](wiki/README.md)
6
7 | File | Description |
8 |------|-------------|
9 | `gui_ze.bzl` | Starlark rules for web/GUI builds |
10 | `time_to_first_byte.sh` | TTFB measurement script |
11
12 ## Rules
13
14 Provides Bazel rules for:
15 - Bundling JavaScript/TypeScript with esbuild
16 - Building WASM modules with Emscripten
17 - Packaging web applications
18
19 ## Usage
20
21 ```starlark
22 load("//gui_ze:gui_ze.bzl", "web_bundle", "wasm_cc_binary")
23
24 web_bundle(
25 name = "app",
26 entry_point = "src/main.tsx",
27 ...
28 )
29 ```