Skip to content

Commit 49ef448

Browse files
authored
📝 Updated the description of the executable file path in the Development Guide
2 parents 362e9fb + a46a306 commit 49ef448

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

doc/docs/en/getting-started/development-guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ nexent/
5353
Before starting backend development, you need to deploy infrastructure services. These services include databases, caching, file storage, and other core components.
5454

5555
```bash
56+
# Execute in the docker directory of the project root directory
5657
cd docker
5758
./deploy.sh --mode infrastructure
5859
```
@@ -63,6 +64,7 @@ Infrastructure mode will start PostgreSQL, Redis, Elasticsearch, and MinIO servi
6364

6465
### Backend Setup
6566
```bash
67+
# Execute in the backend directory of the project root directory
6668
cd backend
6769
uv sync --all-extras
6870
uv pip install ../sdk
@@ -100,6 +102,7 @@ It's recommended to use multiple mirror source configurations to improve downloa
100102

101103
### Frontend Setup
102104
```bash
105+
# Execute in the frontend directory of the project root directory
103106
cd frontend
104107
pnpm install
105108
pnpm dev
@@ -109,7 +112,7 @@ pnpm dev
109112
Before starting services, you need to activate the virtual environment:
110113

111114
```bash
112-
# Execute in the project backend directory
115+
# Execute in the backend directory of the project root directory
113116
cd backend
114117
source .venv/bin/activate # Activate virtual environment
115118
```

doc/docs/zh/getting-started/development-guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ nexent/
5353
在开始后端开发之前,需要先部署基础设施服务。这些服务包括数据库、缓存、文件存储等核心组件。
5454

5555
```bash
56+
# 在项目根目录的docker目录下执行
5657
cd docker
5758
./deploy.sh --mode infrastructure
5859
```
@@ -63,6 +64,7 @@ cd docker
6364

6465
### 后端设置
6566
```bash
67+
# 在项目根目录的backend目录下执行
6668
cd backend
6769
uv sync --all-extras
6870
uv pip install ../sdk
@@ -100,6 +102,7 @@ uv pip install ../sdk --index https://pypi.tuna.tsinghua.edu.cn/simple --index h
100102

101103
### 前端设置
102104
```bash
105+
# 在项目根目录的frontend目录下执行
103106
cd frontend
104107
pnpm install
105108
pnpm run dev
@@ -109,7 +112,7 @@ pnpm run dev
109112
在启动服务之前,需要先激活虚拟环境:
110113

111114
```bash
112-
# 在项目backend目录下执行
115+
# 在项目根目录的backend目录下执行
113116
cd backend
114117
source .venv/bin/activate # 激活虚拟环境
115118
```

0 commit comments

Comments
 (0)