This is a tech demo for a Solo 2 GUI built with Tauri and Svelte.
Install the dependencies...
pnpm install
...then start development server:
pnpm tauri dev
This will take care of running both frontend and backend of your app with watch attached to both. That means whenever you change soething in src
(svelte frontend code) or src-tauri
(rust backend code), it will be automatically processed and hot reloaded. To finish dev/debug mode simply close the app window.
To create an optimised version of the app:
pnpm tauri build
This will create standalone app and installer in src-tauri/target/release
directory.