Built-in demo¶
The packaged app ships a small HTML/JavaScript demo. With the app running, open it from the status window (Open demo) or go to:
http://127.0.0.1:8767/demo/v2/

What it does¶
- Checks health and capabilities.
- Lets you Pick and open a file (native dialog on the machine running the app), or open a path the server can read.
- Shows acquisition header / session metadata.
- Loads and displays source (primary) image planes.
- When present, loads reference image planes and shows the reference line-scan path.
- Can delete the session when you are done.
Supported file types come from AcqStore at runtime. Prefer GET /api/v2/capabilities over hard-coding extensions (typical examples include .tif, .oir, .czi, .nd2, and OME-Zarr variants).
Source in this project¶
The demo page lives in this repository at:
src/acqstore_server/static/demo/v2/index.html
More technical notes: Reference demo. To build your own page, start with Build a client.