Skip to content

Development Setup

You’ll need the following installed before you start:

On Linux, you also need these system packages:

Terminal window
sudo apt install libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libudev-dev
Terminal window
git clone https://github.com/alexandrosnt/Reach.git
cd Reach
npm install
npm run tauri dev

This starts the Vite dev server on port 1420 and launches the Tauri window. Hot module replacement works for the frontend. Rust changes trigger an automatic rebuild (Tauri handles this for you).

Terminal window
npm run dev # Vite dev server only (no Tauri window)
npm run build # Build frontend only
npm run tauri build # Full production build (outputs installers)
npm run check # TypeScript and Svelte type checking
npm run i18n:check # Validate all locale files match en.json
cd src-tauri && cargo check # Check Rust code without building

Running npm run tauri build outputs platform-specific installers in src-tauri/target/release/bundle/. On Windows you get an MSI and NSIS installer, on macOS a .dmg, and on Linux a .deb and .AppImage.