Cross‑platform desktop app that turns a GitHub repository into a Markdown export (code and issues) with progress tracking, theming, and built‑in localization.
cargo install tauri-cli or npm add -D @tauri-apps/cli)npm install
cargo tauri dev # full Tauri app (backend + UI)
Frontend-only dev server (Vite):
npm run dev:ui
cargo tauri dev — Tauri dev (backend + UI)npm run dev — same as above via npm scriptnpm run dev:ui — Vite dev server onlynpm run build — production desktop build via Taurinpm run build:ui — build frontend only (dist/)npm run check — Svelte type checksnpm run lint — ESLint/Svelte lintingLocale files live in src/lib/i18n/locales (en, ru, pt-BR). Switch languages from the header globe menu. New strings should be added to all locale JSONs to keep parity.
src/ — Svelte UIsrc/lib — components, stores, i18n, utilitiessrc-tauri/ — Rust side (commands, config)Apache-2.0 — see ../LICENSE.