docs: revise development cmds

This commit is contained in:
Wing-Kam Wong
2023-08-09 15:53:40 +08:00
parent 09a22820c3
commit 2bf11303f0

View File

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