Warning:
This document is not guaranteed to be up-to-date. If you find any outdated information, please feel free to open an issue or submit a PR.
Building the desktop client app for the moment is a bit more complicated than building the web app. The client right now is an Electron app that wraps the prebuilt web app, with parts of the native modules written in Rust, which means we have the following source modules to build a desktop client app:
packages/frontend/core: the web apppackages/frontend/native: the native modules written in Rust (mostly the sqlite bindings)packages/frontend/electron: the Electron app (containing main & helper process, and the electron entry point inpackages/frontend/electron-renderer)
#3 is dependent on #1 and #2, and relies on electron-forge to make the final app & installer. To get a deep understanding of how the desktop client app is built, you may want to read the workflow file in release-desktop.yml.
Due to some limitations of Electron builder, you may need to have two separate yarn config for building the core and the desktop client app:
- build frontend (with default yarn settings)
- build electron (reinstall with hoisting off)
We will explain the steps in the following sections.
Before you start building AFFiNE Desktop Client Application, please following the same steps in BUILDING#Prerequisites to install Node.js and Rust.
On Windows, you must enable symbolic links this code repo. See #### Windows.
repos/AFFiNE/.github/workflows/release-desktop.yml contains real order to build the desktop client app, but here we will explain the steps in a more detailed way. Up-to date.
Please refer to Build Native Dependencies section in BUILDING.md to build the native modules.
On Mac & Linux
BUILD_TYPE=canary yarn affine @affine/electron build
BUILD_TYPE=canary yarn affine @affine/electron generate-assetsOn Windows (powershell)
$env:BUILD_TYPE="canary"
$env:DISTRIBUTION=desktop
$env:SKIP_WEB_BUILD=1
yarn buildAs we said before, you need to reinstall the dependencies with hoisting off. You can do this by running the following command:
yarn config set nmMode classic
yarn config set nmHoistingLimits workspacesThen, clean up all node_modules and reinstall the dependencies:
On Mac & Linux
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
yarn installOn Windows (powershell)
dir -Path . -Filter node_modules -recurse | foreach {echo $_.fullname; rm -r -Force $_.fullname}
yarn installNote: you need to comment out osxSign and osxNotarize in forge.config.js to skip signing and notarizing the app.
BUILD_TYPE=canary SKIP_WEB_BUILD=1 HOIST_NODE_MODULES=1 yarn affine @affine/electron makeMaking the windows installer is a bit different. Right now we provide two installer options: squirrel and nsis.
$env:BUILD_TYPE="canary"
$env:SKIP_WEB_BUILD=1
$env:HOIST_NODE_MODULES=1
yarn affine @affine/electron package
yarn affine @affine/electron make-squirrel
yarn affine @affine/electron make-nsisOnce the build is complete, you can find the paths to the binaries in the terminal output.
Finished 2 bundles at:
› Artifacts available at: <affine-repo>/packages/frontend/apps/electron/out/canary/make
Please refer to .github/workflows/release-desktop-app.yml for the CI workflow. It will:
- build the app for all supported platforms
- upload the artifacts to GitHub Actions