MatrixSynapse/webclient
Kegan Dougal c80f739461 Added webclient config.js for storing recaptcha public key. 2014-09-05 17:36:09 -07:00
..
components
home
img
js
login Added webclient config.js for storing recaptcha public key. 2014-09-05 17:36:09 -07:00
recents
room
settings
user
README Added webclient config.js for storing recaptcha public key. 2014-09-05 17:36:09 -07:00
app-controller.js
app-directive.js
app-filter.js
app.css
app.js
favicon.ico
index.html Added webclient config.js for storing recaptcha public key. 2014-09-05 17:36:09 -07:00
mobile.css

README

Basic Usage
-----------

The web client should automatically run when running the home server. Alternatively, you can run
it stand-alone:

    $ python -m SimpleHTTPServer

Then, open this URL in a WEB browser::

    http://127.0.0.1:8000/


ReCaptcha Keys
--------------
The web client will look for the global variable webClientConfig for config options. You should
put your ReCaptcha public key there like so:

webClientConfig = {
        recaptcha_public_key: "YOUR_PUBLIC_KEY"
}

This should be put in webclient/config.js which is already .gitignored, rather than in the web
client source files.