Preparation for installation
首先需要确保电脑已安装以下基础工具:Git(代码管理工具)、Node.js(18.x及以上版本)以及npm(包管理工具)。可分别通过git --version
,node --version
cap (a poem)npm --version
command to verify that the installation was successful.
Installation steps
- Cloning the code base:
git clone https://github.com/ItusiAI/Open-VoiceCanvas.git
- Go to the project catalog:
cd Open-VoiceCanvas
- Install the dependencies:
npm install
(网络不畅时可改用国内镜像) - 创建.env文件并配置各服务API密钥(包括OpenAI、AWS、MiniMax等)
- 运行数据库迁移:
npx prisma migrate dev
- Launching the project:
npm run dev
完成上述步骤后,即可通过http://localhost:3000
访问应用。
This answer comes from the articleOpen source operational project integrating multiple advanced speech synthesis servicesThe