cherry-studio/docs/en/guides/development.md
Shemol ab3bce33b8
docs: fix copy -> cp in development guide (#12142)
Signed-off-by: SherlockShemol <shemol@163.com>
2025-12-26 17:05:45 +08:00

891 B

🖥️ Develop

IDE Setup

  • Editor: Cursor, etc. Any VS Code compatible editor.
  • Linter: ESLint
  • Formatter: Biome

Project Setup

Install

yarn

Development

Setup Node.js

Download and install Node.js v22.x.x

Setup Yarn

corepack enable
corepack prepare yarn@4.9.1 --activate

Install Dependencies

yarn install

ENV

cp .env.example .env

Start

yarn dev

Debug

yarn debug

Then input chrome://inspect in browser

Test

yarn test

Build

# For windows
$ yarn build:win

# For macOS
$ yarn build:mac

# For Linux
$ yarn build:linux