]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Orbited/README
Merge branch 'genericons-fix' into 'nightly'
[quix0rs-gnu-social.git] / plugins / Orbited / README
1 The Orbited plugin enables "real time" updates using Orbited + STOMP
2
3 See:
4 * https://pypi.python.org/pypi/orbited
5 * https://en.wikipedia.org/wiki/Streaming_Text_Oriented_Messaging_Protocol
6
7 Installation
8 ============
9 add "addPlugin('Orbited');"
10 to the bottom of your config.php
11
12 Settings
13 ========
14 webserver:
15 webport:
16 channelbase:
17 stompserver:
18 stompport:
19 username:
20 password:
21 webuser:
22 webpass:
23
24 Example
25 =======
26 addPlugin('Orbited', array(
27     'webserver' => '',
28     'webport' => '',
29     'channelbase' => '',
30     'stompserver' => '',
31     'stompport' => '',
32     'username' => '',
33     'password' => '',
34     'webuser' => '',
35     'webpass' => ''
36 ));
37