# @tts-like/desktop Tauri shell wrapping `@tts-like/web` build output. ## Prerequisites 1. Install Rust: https://rustup.rs/ 2. Install Tauri CLI: `cargo install tauri-cli --version '^2.0'` 3. Build the web app first: `pnpm --filter @tts-like/web build` ## Dev mode ```sh pnpm --filter @tts-like/desktop dev ``` This runs Tauri in dev mode, pointing at `http://localhost:5173` (vite dev server). ## Production build ```sh pnpm --filter @tts-like/web build pnpm --filter @tts-like/desktop build ``` Outputs platform-native installer: - macOS: `.dmg` / `.app` - Windows: `.msi` / `.exe` - Linux: `.AppImage` / `.deb` ## Status 🚧 Phase 4 — skeleton only. Tauri config files will be generated by `tauri init` once Rust is installed locally.