/teamTalk

group videochat

Primary LanguageJavaScript

TeamTalk is a group videochat app with webrtc.

Install

npm install
bower install

Configure

src/js/config.js

angular.module('teamTalk')
  .constant('config', {
    signal_url: 'http://localhost:8888',
    debug: true
  })

signal_url the url of your signaling server, for example you could use signalmaster

debug log app debug info

Launch

This project requires gulp

Run gulp in the teamTalk directory and then go to http://localhost:8080?room_name and that's it.