All checks were successful
CI / Format (push) Successful in 47s
CI / CUDA type-check (push) Successful in 1m39s
CI / Clippy (push) Successful in 2m38s
CI / Test (push) Successful in 5m24s
CI / Build cortex SRPM (push) Has been skipped
CI / Publish cortex to COPR (push) Has been skipped
CI / Build neuron SRPM (push) Has been skipped
CI / Publish neuron to COPR (push) Has been skipped
CI / Bump version in source (push) Has been skipped
New top-level `helexa.ai/` app for the public beta — Vite + React (SWC) +
TypeScript + react-bootstrap + react-router + react-i18next-ready. Not a
Cargo crate; lives beside the workspace.
- Vite with @vitejs/plugin-react-swc (standard Vite + npm, not the
reference's rolldown/pnpm pin). `vite.config.ts` dev-proxies the mesh
data-plane (/v1, /health → helexa-router) and account control-plane
(/api → helexa-upstream /web/v1) same-origin, targets overridable via
VITE_ROUTER_BASE_URL / VITE_ACCOUNT_BASE_URL.
- tsconfig (app/node, ported from the reference), eslint flat config,
minimal index.css reset + bootstrap CSS, a placeholder App shell.
- Deps pre-declared for later phases: dexie + dexie-react-hooks (IndexedDB
chat history), @fingerprintjs/fingerprintjs (anon throttle + register
fingerprint), i18next/react-i18next, react-icons.
- Monorepo: root .gitignore ignores helexa.ai/{node_modules,dist} +
.env.local (mirrors the existing /bench entries); committed
package-lock.json for reproducible installs.
Validated: npm install resolves (vite 7 + plugin-react-swc 4 + react 19),
`npm run lint`/`typecheck`/`build` all green (344 modules via SWC →
dist/). The frontend isn't in the Cargo workspace, so the Rust CI is
unaffected. A path-filtered web CI job is deferred (needs a Node-capable
runner confirmed) and folded into a later phase.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01F6o3ddqmYNh9kzdwq6eowh
21 lines
642 B
Plaintext
21 lines
642 B
Plaintext
# helexa.ai frontend env. Copy to .env.local for local dev (gitignored).
|
|
|
|
# Mesh data-plane (helexa-router, OpenAI-compatible inference). In dev,
|
|
# vite proxies /v1 and /health here.
|
|
VITE_ROUTER_BASE_URL=http://localhost:8088
|
|
|
|
# Account control-plane (helexa-upstream). In dev, vite proxies /api here
|
|
# (rewritten to /web/v1).
|
|
VITE_ACCOUNT_BASE_URL=http://localhost:8090
|
|
|
|
# Public-beta banner.
|
|
VITE_PUBLIC_BETA=true
|
|
|
|
# Models for the chat workspace (F3+).
|
|
# VITE_ANON_MODEL=...
|
|
# VITE_DEFAULT_MODEL=...
|
|
|
|
# Develop the account dashboard (F4) against an in-browser mock before the
|
|
# upstream account API ships.
|
|
# VITE_USE_MOCK_ACCOUNT_API=true
|