Files
dependabot[bot] 416f03159a Bump the dependency-type group in /installer-gui with 3 updates
Bumps the dependency-type group in /installer-gui with 3 updates: [eslint](https://github.com/eslint/eslint), [typescript](https://github.com/microsoft/TypeScript) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `eslint` from 10.2.0 to 10.2.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v10.2.0...v10.2.1)

Updates `typescript` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/compare/v6.0.2...v6.0.3)

Updates `vite` from 8.0.8 to 8.0.9
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.9/packages/vite)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependency-type
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependency-type
- dependency-name: vite
  dependency-version: 8.0.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependency-type
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-20 09:43:15 -07:00
..
2025-11-05 10:53:41 -08:00
2026-01-06 09:28:40 -08:00
2025-11-05 10:53:41 -08:00
2025-11-05 10:53:41 -08:00
2025-11-05 10:53:41 -08:00
2025-11-05 10:53:41 -08:00
2025-11-05 10:53:41 -08:00
2025-11-05 10:53:41 -08:00

Rayhunter GUI Installer

This directory contains experimental work on a Rayhunter GUI installer based on Tauri.

Dependencies

Before building the GUI installer, you'll first need to install its dependencies.

Tauri Dependencies

You'll need to install Tauri's dependencies. In addition to Rust, you'll need Node.js/npm. If you're on Linux, also be sure to install the necessary system dependencies from your package manager.

Rayhunter CLI Installer

The GUI installer pulls in the CLI installer as a library. Like with the CLI installer, the firmware binary needs to be present and can be overridden with the same envvars. See ../installer/build.rs for options.

For example, to build the firmware in development mode:

cargo build-daemon-firmware-devel
cargo build-rootshell-firmware-devel

(cd installer-gui && FIRMWARE_PROFILE=firmware-devel npm run tauri android build)

Building

After preparing dependencies, the GUI installer can be built by:

  1. Running npm install in this directory.
  2. Running npm run tauri dev.

This will build the GUI installer in development mode. While this command is running, any changes to either the frontend or backend code will cause the installer to be reloaded or rebuilt.

You can also run npm run tauri build to create the final GUI installer artifacts for your OS as is done in CI.