Revornix推荐使用Docker进行部署,具体步骤如下:
- environmental preparation:服务器需安装Docker及Docker Compose工具,建议配置至少4GB内存(若需运行本地AI模型则需更高性能显卡)。
- Code Fetch: By
git clone
命令克隆GitHub仓库至本地:git clone git@github.com:Qingyon-AI/Revornix.git
- Configuration settings:复制环境变量模板文件并修改关键参数(如
SECRET_KEY
),确保各服务配置文件中的密钥一致。 - Starting services: Implementation
docker compose up -d
启动容器组,等待3-5分钟完成镜像拉取和服务初始化。 - 访问验证: Browser access
http://localhost
进入前端界面,通过docker compose logs api
命令查看服务状态。
注意:若需手动部署,需额外配置Python环境、Milvus向量数据库等依赖项,建议参考官方文档操作。
This answer comes from the articleRevornix: information management tool with built-in AI assistantThe