This is an open source repository for enabling people to process ultra resolution images on their own computer, minimizing any upload and processing times to upload images to Micrio.
Learn more about Micrio at https://micr.io/
baseThe@micrio/tiler-basepackage — client-side tiler library.CLIThe@micrio/clicommand-line tool to process and upload images to your Micrio account.GUI/appThe graphical user interface (Electron desktop app).GUI/uiThe Svelte frontend for the desktop app.
cd CLI
pnpm install
pnpm build# 1. Build the base library (also needed by CLI)
cd base && pnpm install && pnpm build
# 2. Install GUI dependencies
cd ../GUI/ui && pnpm install
cd ../app && pnpm install
# 3. Build the distributable
cd ../.. && pnpm build:guiOr use the root scripts (each project must have its dependencies installed first):
pnpm build:base # build base library
pnpm build:cli # build CLI
pnpm build:gui # build Linux GUI zip
pnpm build:gui:win32 # build Windows x64 GUI
pnpm build:gui:darwin # build macOS universal GUI (must run on a Mac)The GUI output is at GUI/app/out/make/.
zip— required by allbuild:gui:*commands to create distributable archives