Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.21 KB

File metadata and controls

43 lines (29 loc) · 1.21 KB

中文 | English

AGENTS.md

Scope

This file applies to BitFun-Installer. Use the top-level AGENTS.md for repository-wide rules.

What matters here

BitFun-Installer is a separate Tauri + React app, not part of the main Cargo workspace.

Important areas called out by the module README:

  • src-tauri/src/installer/commands.rs: Tauri IPC and uninstall execution
  • src-tauri/src/installer/registry.rs: Windows registry integration
  • src-tauri/src/installer/shortcut.rs: shortcut creation
  • src-tauri/src/installer/extract.rs: archive extraction
  • src/hooks/useInstaller.ts: frontend installer state flow

Install flow:

Language Select → Options → Progress → Model Setup → Theme Setup

Commands

pnpm --dir BitFun-Installer run installer:dev
pnpm --dir BitFun-Installer run tauri:dev
pnpm --dir BitFun-Installer run type-check
pnpm --dir BitFun-Installer run build
pnpm --dir BitFun-Installer run installer:build

Verification

pnpm --dir BitFun-Installer run type-check && pnpm --dir BitFun-Installer run installer:build

If you modify uninstall flow, also validate the uninstall mode entry points described in BitFun-Installer/README.md.