This repository contains both the frontend and backend code for a real-time voice chat application. The frontend is built using Vue.js, while Strapi powers the backend. The real-time functionality is enabled by WebRTC with PeerJS.
voice-chat-api/
voice-chat-frontend/
The backend of the application, built with Strapi.
npm install
npm run develop
# or
yarn develop
npm run start
# or
yarn start
npm run build
# or
yarn build
For more information, see the Strapi CLI documentation.
The frontend of the application, built with Vue.js.
npm install
npm run serve
npm run build
PeerJS server for signaling.
npm install peer -g
peerjs --port 9000 --key peerjs --path /myapp
For more information, see the Vue CLI documentation.
For deployment options, refer to the Strapi deployment documentation.