MatrixSynapse/webclient
Kegan Dougal 0b9e1e7b56 Added a captcha config to the HS, to enable registration captcha checking and for the recaptcha private key. 2014-09-05 17:58:06 -07:00
..
components Added a captcha config to the HS, to enable registration captcha checking and for the recaptcha private key. 2014-09-05 17:58:06 -07:00
home
img
js
login Added webclient config.js for storing recaptcha public key. 2014-09-05 17:36:09 -07:00
recents Display ban & kick reason 2014-09-05 16:45:59 +02:00
room BF: tab completion did not work with commands. $scope.input contained only the typed chars not the result of the completion. 2014-09-05 18:46:34 +02:00
settings doc: kick can take a reason arg 2014-09-05 17:32:35 +02:00
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 BF: Fixed members list layout when the scrollbar appears 2014-09-05 15:37:51 +02:00
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.