DevDocs采用Docker容器化部署,安装过程分为四个主要步骤:
- environmental preparation::
- 必须安装Git(git-scm.com)和Docker Desktop(docker.com)
- 验证Docker是否正常工作:终端运行
docker --version
command
- Code Fetch::
- utilization
git clone https://github.com/cyberagiinc/DevDocs.git
命令克隆仓库 - Go to the project catalog:
cd DevDocs
- utilization
- service activation::
- Mac/Linux系统执行
./docker-start.sh
- Windows系统运行
docker-start.bat
- Mac/Linux系统执行
- 权限处理:Windows用户可能需要手动设置文件夹权限,使用
icacls
命令开放logs、storage等目录的访问权限
安装完成后,通过浏览器访问http://localhost:3001
即可使用前端界面。值得注意的是,后端API服务默认运行在24125端口,而Crawl4AI服务则在11235端口。
This answer comes from the articleDevDocs: an MCP service for quickly crawling and organizing technical documentationThe