From 7e70cd96b9536bfd48f409b74f579d6cb1cb207e Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Thu, 24 Jul 2025 15:53:58 +0500 Subject: [PATCH] docs: add missing instruction in desktop app dev setup Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/desktop/README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/apps/desktop/README.md b/apps/desktop/README.md index ce15deb2a..e2d8bb58b 100644 --- a/apps/desktop/README.md +++ b/apps/desktop/README.md @@ -24,7 +24,7 @@ Requirements: Before you can do anything, you'll need to [install Node.js](https://nodejs.org/en/download/) v16 or later on your system. -Once you have completed the setup, the first step is to `clone` the monorepo: +1. `clone` the monorepo: ```bash git clone https://github.com/streetwriters/notesnook.git @@ -33,19 +33,28 @@ git clone https://github.com/streetwriters/notesnook.git cd notesnook ``` -Once you are inside the `./notesnook` directory, run the preparation step: +2. Install dependencies: ```bash # this might take a while to complete npm install ``` -Now you can finally start the desktop app for development: +3. Run the webapp for desktop environment: + +```bash +cd apps/web +npm run start:desktop +``` + +4. In a separate terminal session, run the desktop app from the root of the project: ```bash npm run start:desktop ``` +### Release mode + To run the app in release mode: ```bash