Browse Source

docs: revise development cmds

pull/5903/head
Wing-Kam Wong 1 year ago
parent
commit
2bf11303f0
  1. 16
      packages/noco-docs/content/en/engineering/development-setup.md

16
packages/noco-docs/content/en/engineering/development-setup.md

@ -15,26 +15,22 @@ git clone https://github.com/nocodb/nocodb
## Install dependencies
```bash
# run under the root of the project
pnpm boostrap
# run from the project root
pnpm bootstrap
```
## Start Frontend
```bash
cd packages/nc-gui
pnpm run dev
# Or
pnpm --filter=nc-gui run dev
# run from the project root
pnpm start:frontend
```
## Start Backend
```bash
cd packages/nocodb
pnpm run start
# Or
pnpm --filter=nocodb run start
# run from the project root
pnpm start:backend
```
Any changes made to frontend and backend will be automatically reflected in the browser.

Loading…
Cancel
Save