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 ## Install dependencies
```bash ```bash
# run under the root of the project # run from the project root
pnpm boostrap pnpm bootstrap
``` ```
## Start Frontend ## Start Frontend
```bash ```bash
cd packages/nc-gui # run from the project root
pnpm run dev pnpm start:frontend
# Or
pnpm --filter=nc-gui run dev
``` ```
## Start Backend ## Start Backend
```bash ```bash
cd packages/nocodb # run from the project root
pnpm run start pnpm start:backend
# Or
pnpm --filter=nocodb run start
``` ```
Any changes made to frontend and backend will be automatically reflected in the browser. Any changes made to frontend and backend will be automatically reflected in the browser.

Loading…
Cancel
Save