z0r1k / OpenTokRTC

WebRTC Demo using OpenTok's WebRTC library for video and OpenTok signaling for live chat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebRTC Demo

Deploy

File Overview

  • Procfile is required to run the nodejs app on Heroku
  • package.json contains all npm modules to run the app
  • app.js contains all server side code
  • config.js contains configurations: TokBox credentials, p2p mesh support, Redis support, reserved rooms, etc.
  • lib folder contains all the code to handle configurations: p2p mesh support, Redis support, reserved rooms, etc.
  • views folder contains the html template for the app
  • public/css folder contains all the css for the app.
    Look for files with .scss extensions. .css files are generated from sass.
  • public/js contains the front end code and interactions with OpenTok SDK.

How to run the app:

  1. Clone this repo
  2. Get my API Key and Secret from TokBox
  3. Replace OTKEY and OTSECRET with your corresponding API Key and Secret in app.js
  4. Run npm install to install the necessary packages
  5. Start the server with node app.js

Deploying this app to your own host (Heroku):

  1. Clone this repo
  2. Go into the cloned repo: cd OpenTokRTC
  3. Create a heroku app: heroku create appName
  4. Add your TokBox apiKey and secret credentials in config.js or set Heroku's environment variables
  5. Push to remote heroku repository: git push heroku master
  6. Visit your app

About

WebRTC Demo using OpenTok's WebRTC library for video and OpenTok signaling for live chat


Languages

Language:CSS 47.3%Language:JavaScript 42.6%Language:HTML 10.2%