docs: add missing instruction in desktop app dev setup

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2025-07-24 15:53:58 +05:00
parent 2447b3bea7
commit 7e70cd96b9

View File

@@ -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. 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 ```bash
git clone https://github.com/streetwriters/notesnook.git git clone https://github.com/streetwriters/notesnook.git
@@ -33,19 +33,28 @@ git clone https://github.com/streetwriters/notesnook.git
cd notesnook cd notesnook
``` ```
Once you are inside the `./notesnook` directory, run the preparation step: 2. Install dependencies:
```bash ```bash
# this might take a while to complete # this might take a while to complete
npm install 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 ```bash
npm run start:desktop npm run start:desktop
``` ```
### Release mode
To run the app in release mode: To run the app in release mode:
```bash ```bash