-
Notifications
You must be signed in to change notification settings - Fork 0
Building From Source Desktop
Ashley Davis edited this page Jun 14, 2026
·
1 revision
This guide is for developers who want to build the desktop app from source. Most users should install a published release instead. See Installation-Desktop.
- Bun
- Git
- The media processing tools FFmpeg and ImageMagick (see Required-Tools)
# Clone the repository
git clone git@github.com:ashleydavis/photosphere.git
cd photosphere
# Install dependencies (from the repo root)
bun install
# Launch the desktop app in development mode (from the repo root)
bun run devTo bundle the app and produce installers and archives with electron-builder (from the repo root):
bun run buildThe packaged output is written to the electron-builder output directory (apps/desktop/dist/ by default).
- Getting-Started-Desktop - Using the desktop app
- Configuration-Desktop - Desktop configuration options