The Electron-based desktop application for Minutely. It provides a native experience for Windows, built using React, Vite, Electron Forge, and Tailwind CSS. It consumes @minutely/shared for its UI primitives and API connectivity.
Ensure you have installed the dependencies:
cd minutely-desktop
pnpm install(Note: Since it depends on @minutely/shared via the file: protocol, ensure minutely-shared is present in the parent directory).
To start the Electron application in development mode:
pnpm run startThis will launch the desktop application window with live reloading enabled via Vite.
To verify TypeScript correctness across the desktop app and its shared dependencies:
pnpm exec tsc --noEmitTo package the application for distribution:
pnpm run package
# or
pnpm run makeThis will use Electron Forge to generate the distributable files in the out/ directory.