ragflow/web
PentaFrame-Development fb3fedbbcf fix(docs-generator): Add multi-language font support and reportlab dependency
- Add reportlab>=4.4.1 to dependencies (pyproject.toml)
- Add fonts-freefont-ttf and fonts-noto-cjk to Dockerfile for Unicode support
- Implement automatic CJK font detection and switching:
  - Latin content uses user-selected font (Helvetica, Times-Roman, Courier)
  - CJK/Arabic/Hebrew/Thai/Hindi content auto-switches to STSong-Light CID font
- Add documentation about automatic font switching behavior
- Fix frontend null safety in use-selelct-filters.ts
- Add DocsGenerator component to agent constants

Fixes missing glyphs (black squares) issue for Chinese, Japanese, Korean,
Arabic, Hebrew, Thai, and Hindi characters in generated PDFs.
2025-12-11 11:29:22 +01:00
..
.husky
.storybook feat(storybook): Storybook with Calendar and Modal components #9869 (#10626) 2025-10-17 09:58:52 +08:00
public Feat: If a query variable in a data manipulation operator is deleted, a warning message should be displayed to the user. #10427 #11255 (#11384) 2025-11-19 19:10:57 +08:00
src fix(docs-generator): Add multi-language font support and reportlab dependency 2025-12-11 11:29:22 +01:00
.env Remove 'DID YOU KNOW', when start front-end (#10853) 2025-10-28 19:40:58 +08:00
.eslintrc.js Feat: Display AvatarUpload and RAGFlowAvatar in Storybook #9914 (#9920) 2025-09-04 18:02:17 +08:00
.gitignore Feat: Use storybook to display public components. #9914 (#9915) 2025-09-04 17:03:36 +08:00
.npmrc
.prettierignore
.prettierrc
.umirc.ts Feat: Admin UI (#10857) 2025-10-28 22:25:43 +08:00
externals.d.ts
jest-setup.ts
jest.config.ts
package-lock.json Fix:csv parse in Table (#11870) 2025-12-10 16:44:06 +08:00
package.json Fix:csv parse in Table (#11870) 2025-12-10 16:44:06 +08:00
postcss.config.js Feat: Use storybook to display public components. #9914 (#9915) 2025-09-04 17:03:36 +08:00
README.md Update Admin UI user guide docs (#11183) 2025-11-11 20:29:20 +08:00
tailwind.config.js Add task executor bar chart, add system version string (#11155) 2025-11-11 15:20:37 +08:00
tailwind.css Add task executor bar chart, add system version string (#11155) 2025-11-11 15:20:37 +08:00
tsconfig.json
typings.d.ts

Install front-end dependencies

npm install

Launch front-end

npm run dev

The following output confirms a successful launch of the system:

Login to RAGFlow web UI

Open your browser and navigate to:

http://localhost:9222 or http://[YOUR_MACHINE_IP]:9222

Replace [YOUR_MACHINE_IP] with your actual machine IP address (e.g., http://192.168.1.49:9222).

Login to RAGFlow web admin UI

Open your browser and navigate to:

http://localhost:9222/admin or http://[YOUR_MACHINE_IP]:9222/admin

Replace [YOUR_MACHINE_IP] with your actual machine IP address (e.g., http://192.168.1.49:9222/admin).

Shutdown front-end

Ctrl + C or

kill -f "umi dev"