Mercurial
view gui_ze/README.md @ 260:1f9877b637e9
Add Copilot-powered cyberpunk JRPG chat
Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 09:19:41 -0700 |
| parents | b818a4561a3c |
| children |
line wrap: on
line source
# gui_ze Bazel rules for building GUI applications and web frontends. ## Files | File | Description | |------|-------------| | `gui_ze.bzl` | Starlark rules for web/GUI builds | | `time_to_first_byte.sh` | TTFB measurement script | ## Rules Provides Bazel rules for: - Bundling JavaScript/TypeScript with esbuild - Building WASM modules with Emscripten - Packaging web applications ## Usage ```starlark load("//gui_ze:gui_ze.bzl", "web_bundle", "wasm_cc_binary") web_bundle( name = "app", entry_point = "src/main.tsx", ... ) ```