simple-inventory-editor/README.md
2025-03-02 18:55:21 -05:00

1 KiB

simple-inventory-editor

A simple, offline, table-based home-inventory editor.

Using the App

TBA

Local Development

Getting Started

  1. Install the pre-reqs for tauri (webview dev dependencies, rust, and node)
  2. run npm ci to install dependencies
  3. run npm run tauri dev to start the app; this will install rust dependencies when run for the first time
  4. run npm run tauri build to build the app; see the distribute documentation for more information

Architecture

simple-inventory-editor uses tauri, which makes use of the system's "webview" in place of bundling an entire browser with the app. Tauri splits lower-level system functionality (src-tauri: rust) from the front-end UI (src: node (vite, vue, primevue)). Most of the lower-level functionality necessary for the app has been abstracted into node plugins to be easily called from the front-end, so the tauri source's main responsibility is largely just creating the window.