A simple, offline, table-based home-inventory editor
Find a file
2025-03-23 23:21:49 -04:00
.vscode docs 2025-03-02 18:55:21 -05:00
mocks file loading 2025-03-02 14:56:12 -05:00
public init 2025-03-01 17:44:12 -05:00
src add clone button 2025-03-23 23:21:49 -04:00
src-tauri fix missing styles and images 2025-03-23 16:22:44 -04:00
.editorconfig setup 2025-03-01 18:28:10 -05:00
.gitignore init 2025-03-01 17:44:12 -05:00
.nvmrc organization 2025-03-02 15:46:49 -05:00
index.html dark mode, bigger default window, gw brand 2025-03-02 16:05:38 -05:00
LICENSE.md docs 2025-03-02 18:55:21 -05:00
package-lock.json docs 2025-03-02 18:55:21 -05:00
package.json docs 2025-03-02 18:55:21 -05:00
README.md docs 2025-03-02 18:55:21 -05:00
tsconfig.json organization 2025-03-02 15:46:49 -05:00
tsconfig.node.json init 2025-03-01 17:44:12 -05:00
vite.config.ts organization 2025-03-02 15:46:49 -05:00

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.