Skip to content

Commit a2a55e4

Browse files
author
linkmluser
committed
Clarify Tauri testing workflow
1 parent cfbdde6 commit a2a55e4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/tauri.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@
44
- Rust + Cargo
55
- Tauri CLI: `cargo install tauri-cli` (or use `cargo tauri` if already available)
66

7-
## Quick Start (using gallery example)
7+
## Testing Workflow (using gallery example)
88
```bash
99
mkdir -p ui
1010
cp -R docs/gallery/dismech/* ui/
1111
cargo tauri dev
1212
```
1313

14-
## Using your own dataset
14+
## Testing Workflow (your own dataset)
1515
Generate a static browser into `ui/`, then run Tauri:
1616
```bash
1717
uv run linkml-browser deploy path/to/data.json ui/
1818
cargo tauri dev
1919
```
2020

2121
## Notes
22-
- The Tauri app loads files from `ui/` (configured in `src-tauri/tauri.conf.json`).
22+
- The Tauri app loads files from `ui/` (configured in `src-tauri/tauri.conf.json` via `build.frontendDist`).
23+
- The static browser itself is not hardwired to `ui/`; only the Tauri wrapper uses that path.
24+
- You can change the path by updating `src-tauri/tauri.conf.json`.
2325
- `ui/` is treated as build output and is ignored by git.

0 commit comments

Comments
 (0)