# ragflow-web **Repository Path**: ihaiyang/ragflow-web ## Basic Information - **Project Name**: ragflow-web - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-19 - **Last Updated**: 2025-03-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 💡 RAGFlow 是什么? [RAGFlow] 是一款基于深度文档理解构建的开源 RAG(Retrieval-Augmented Generation)引擎。RAGFlow 可以为各种规模的企业及个人提供一套精简的 RAG 工作流程,结合大语言模型(LLM)针对用户各类不同的复杂格式数据提供可靠的问答以及有理有据的引用。 ## 🎬 快速开始 ## 🛠️ 源码启动服务 如需从源码启动服务,请参考以下步骤: 1. 启动WebUI服务 ```bash $ cd web $ npm install --registry=https://registry.npmmirror.com --force $ vim .umirc.ts # 修改proxy.target为http://127.0.0.1:9380 $ npm run dev ``` 2. 部署WebUI服务 ```bash $ cd web $ npm install --registry=https://registry.npmmirror.com --force $ umi build $ mkdir -p /ragflow/web $ cp -r dist /ragflow/web $ apt install nginx -y $ cp deploy/proxy.conf /etc/nginx $ cp deploy/nginx.conf /etc/nginx $ cp deploy/ragflow.conf /etc/nginx/conf.d # 修改ragflow.conf 的proxy pass地址改为后端实际布署地址 $ systemctl start nginx ```