Skip to content

Commit

Permalink
add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Ne0 committed Apr 6, 2014
0 parents commit da1c915
Show file tree
Hide file tree
Showing 42 changed files with 3,539 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
@@ -0,0 +1,22 @@
WebRTC Demo
==
<hr>

This a [WebRTC](http://www.webrtc.org/) demo. This demo is taken from google code - https://code.google.com/p/webrtc/source/browse/#svn%2Ftrunk%2Fsamples%2Fjs%2Fapprtc

It can be a good starting point for people who want to test WebRTC features.

##Installation
It works in Google App Engine or with the GAE SDK in localhost. Just install GAE locally, clone this demo and run:

dev_appserver.py $PATH_TO_WebRTC_Demo

To upload it to GAE change the app name in app.yaml.

##Demo
A working demo of WebRTC is available on appengine - https://apprtc.appspot.com

##More Info

* [Code Walkthrough](http://ntcn.net/blog/?p=6388)
* [WebRTC Basics](http://www.html5rocks.com/en/tutorials/webrtc/basics/)
29 changes: 29 additions & 0 deletions app.yaml
@@ -0,0 +1,29 @@
application: apprtc
version: 6
runtime: python27
threadsafe: true
api_version: 1

handlers:
- url: /html
static_dir: html

- url: /images
static_dir: images

- url: /js
static_dir: js

- url: /css
static_dir: css

- url: /.*
script: apprtc.app
secure: always

inbound_services:
- channel_presence

libraries:
- name: jinja2
version: latest

0 comments on commit da1c915

Please sign in to comment.