Preparation for installation
The first thing you need to do is to make sure that the following basic tools are installed on your computer: Git (code management tool), Node.js (version 18.x and above) and npm (package management tool). These can be accessed via thegit --version,node --versioncap (a poem)npm --versioncommand 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(Domestic mirrors can be used instead in case of poor network) - Create .env files and configure API keys for each service (including OpenAI, AWS, MiniMax, etc.)
- Run a database migration:
npx prisma migrate dev - Launching the project:
npm run dev
Once you have completed the above steps, you can pass thehttp://localhost:3000Access the application.
This answer comes from the articleOpen source operational project integrating multiple advanced speech synthesis servicesThe































