Skip to content

Commit 21e045c

Browse files
committed
Refactor project structure section in README for improved clarity and consistency
1 parent beace1f commit 21e045c

1 file changed

Lines changed: 37 additions & 37 deletions

File tree

apps/backend/README.md

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -360,45 +360,45 @@ server {
360360
## 專案結構 | Project Structure
361361
```
362362
apps/backend/
363-
├── controller/ # API 控制器目錄 | API controllers directory
364-
│ ├── auth_controller.js # 認證控制器 | Authentication controller
365-
│ └── task_controller.js # 任務控制器 | Task controller
366-
├── log/ # 系統日誌目錄 | System logs directory
367-
├── middlewares/ # 中間件目錄 | Middleware directory
368-
│ └── validator_params.js # 請求驗證中間件 | Request validation middleware
369-
├── scripts/ # 腳本目錄 | Scripts directory
370-
│ ├── config.json # 轉錄引擎配置檔 | Transcription engine config
371-
│ └── transcribe.py # 轉錄處理主腳本 | Main transcription script
372-
├── services/ # 服務層目錄 | Services directory
373-
│ └── task_service.js # 轉錄服務 | Transcription service
374-
├── sql/ # SQL 腳本目錄 | SQL scripts directory
363+
├── controller/ # API 控制器目錄 | API controllers directory
364+
│ ├── auth_controller.js # 認證控制器 | Authentication controller
365+
│ └── task_controller.js # 任務控制器 | Task controller
366+
├── log/ # 系統日誌目錄 | System logs directory
367+
├── middlewares/ # 中間件目錄 | Middleware directory
368+
│ └── validator_params.js # 請求驗證中間件 | Request validation middleware
369+
├── scripts/ # 腳本目錄 | Scripts directory
370+
│ ├── config.json # 轉錄引擎配置檔 | Transcription engine config
371+
│ └── transcribe.py # 轉錄處理主腳本 | Main transcription script
372+
├── services/ # 服務層目錄 | Services directory
373+
│ └── task_service.js # 轉錄服務 | Transcription service
374+
├── sql/ # SQL 腳本目錄 | SQL scripts directory
375375
│ ├── access_operation_error.sql # 操作異常資料表 | Operation error table
376376
│ ├── access_operation.sql # 操作紀錄資料表 | Operation log table
377-
│ ├── createdb.sql # 建立資料庫腳本 | Database creation script
378-
│ ├── initial.sql # 系統初始化腳本 | System initialization
379-
│ └── task.sql # 任務資料表腳本 | Task table script
380-
├── transcribe/ # 轉錄結果目錄 | Transcription results directory
381-
│ ├── json/ # JSON 格式輸出 | JSON format output
382-
│ ├── srt/ # SRT 格式輸出 | SRT format output
383-
│ ├── tsv/ # TSV 格式輸出 | TSV format output
384-
│ ├── txt/ # TXT 格式輸出 | Text format output
385-
│ └── vtt/ # VTT 格式輸出 | VTT format output
386-
├── upload/ # 上傳檔案目錄 | Upload directory
387-
├── uploadlc/ # 處理後檔案目錄 | Processed files directory
388-
├── .env.example # 環境變數範例 | Environment variables example
389-
├── db-init.js # 資料庫初始化腳本 | Database initialization script
390-
├── db.js # 資料庫連接模組 | Database connection module
391-
├── config.js # 系統配置檔 | System configuration
392-
├── constants.js # 常數定義檔 | Constants definition
393-
├── env.js # 環境變數處理 | Environment variables handler
394-
├── logger-writter.js # 日誌寫入器 | Log writer
395-
├── logger.js # 日誌模組 | Logging module
396-
├── main.js # 應用程式入口 | Application entry point
397-
├── package.json # 專案描述檔 | Project descriptor
398-
├── query_constants.js # 查詢常數檔 | Query constants
399-
├── run.sh # 服務控制腳本 | Service control script
400-
├── shared.js # 共用函數模組 | Shared functions module
401-
└── utils.js # 工具函數模組 | Utility functions module
377+
│ ├── createdb.sql # 建立資料庫腳本 | Database creation script
378+
│ ├── initial.sql # 系統初始化腳本 | System initialization
379+
│ └── task.sql # 任務資料表腳本 | Task table script
380+
├── transcribe/ # 轉錄結果目錄 | Transcription results directory
381+
│ ├── json/ # JSON 格式輸出 | JSON format output
382+
│ ├── srt/ # SRT 格式輸出 | SRT format output
383+
│ ├── tsv/ # TSV 格式輸出 | TSV format output
384+
│ ├── txt/ # TXT 格式輸出 | Text format output
385+
│ └── vtt/ # VTT 格式輸出 | VTT format output
386+
├── upload/ # 上傳檔案目錄 | Upload directory
387+
├── uploadlc/ # 處理後檔案目錄 | Processed files directory
388+
├── .env.example # 環境變數範例 | Environment variables example
389+
├── db-init.js # 資料庫初始化腳本 | Database initialization script
390+
├── db.js # 資料庫連接模組 | Database connection module
391+
├── config.js # 系統配置檔 | System configuration
392+
├── constants.js # 常數定義檔 | Constants definition
393+
├── env.js # 環境變數處理 | Environment variables handler
394+
├── logger-writter.js # 日誌寫入器 | Log writer
395+
├── logger.js # 日誌模組 | Logging module
396+
├── main.js # 應用程式入口 | Application entry point
397+
├── package.json # 專案描述檔 | Project descriptor
398+
├── query_constants.js # 查詢常數檔 | Query constants
399+
├── run.sh # 服務控制腳本 | Service control script
400+
├── shared.js # 共用函數模組 | Shared functions module
401+
└── utils.js # 工具函數模組 | Utility functions module
402402
```
403403

404404
## 授權條款 | License

0 commit comments

Comments
 (0)