Files
cherry-studio/docs/en/guides/development.md
fullex bb41709ce8 docs: update docs directory structure
- Updated links in CONTRIBUTING.md and README.md to point to the correct Chinese documentation paths.
- Removed outdated files including the English and Chinese versions of the branching strategy, contributing guide, and test plan documents.
- Cleaned up references to non-existent documentation in the project structure to streamline the contributor experience.
2025-11-26 13:17:01 +08:00

893 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

copy .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