- Replace apps/game (TypeScript/Vite/R3F) with a Bevy 0.16 Rust client featuring main menu, star map, and flight states - Add services/auth: Express + better-auth server with SpacetimeDB token exchange endpoint - Delete archive/legacy-static/ (old JS demos, CSS, assets) - Update docs pages (architecture, gameplay, roadmap, social, overview) to reflect Bevy pivot - Clean up workspace config: remove apps/game from pnpm workspace, update dev scripts, tsconfig, and AGENTS.md files - Add .vscode/settings.json for Rust tooling
17 lines
706 B
Markdown
17 lines
706 B
Markdown
# apps/ — Application Packages
|
|
|
|
Three Vite + React apps, each independently buildable and dev-serveable.
|
|
|
|
| App | Port | Package | Description |
|
|
|-----|------|---------|-------------|
|
|
| `docs` | 5173 | `@void-nav/docs` | Living design docs, 16 doc pages, 14 interactive demos, game-slice prototype |
|
|
| `game` | 5175 | `@void-nav/game` | Playable single-player game client connected to SpacetimeDB backend |
|
|
| `site` | 5174 | `@void-nav/site` | Public landing page / marketing site |
|
|
|
|
## Shared
|
|
|
|
- All use Tailwind CSS v4 and `@void-nav/ui` for shared primitives
|
|
- All use Vite 7 as build tool
|
|
- All use React 18 with TypeScript 5.8
|
|
- `docs` and `game` also use Three.js + React Three Fiber for 3D scenes
|