跳转到内容

安装部署

  • Node.js >= 20.6.0
  • 或 Docker / Docker Compose
Terminal window
# 克隆项目
git clone https://github.com/hhyqhh/inno-agent.git
cd inno-agent
# 复制配置文件
cp .env.example .env
cp config.example.json config.json
# 启动
docker compose up -d

启动后访问 http://localhost:3000 即可使用 Web 端。

Terminal window
# 安装依赖
npm install
# 构建
npm run build
# 启动服务端
npm run server

前往 Releases 下载对应平台的安装包:

  • macOS: .dmg (Apple Silicon)
  • Windows: .msi / .exe

编辑 config.json,填入你的模型 API Key:

{
"models": {
"openai": {
"apiKey": "sk-xxx"
}
}
}

详细配置参见 系统依赖文档

配置完成后,前往 第一个工作区 开始使用。