Real-time video conferencing platform with WebRTC.
cd backend
npm install
npx prisma generate
npx prisma migrate dev --name init
npm run devcd frontend
npm install
npm run devBackend (.env)
DATABASE_URL="postgresql://postgres:password@localhost:5432/meetbuddy?schema=public"
JWT_SECRET=your-secret-key
FRONTEND_URL=http://localhost:3000Frontend (.env.local)
NEXT_PUBLIC_API_URL=http://localhost:3001
NEXT_PUBLIC_WS_URL=http://localhost:3001- User Authentication
- Meeting Creation with unique codes
- WebRTC Video/Audio
- Real-time Chat
- Meeting History
See implementation_plan.md for detailed setup and architecture.