|
@@ -12,10 +12,23 @@ Installing Jitsi Meet is quite a simple experience. For Debian-based systems, we
|
12
|
12
|
|
13
|
13
|
For other systems, or if you wish to install all components manually, see the [detailed installation instructions](https://github.com/jitsi/jitsi-meet/blob/master/doc/manual-install.md).
|
14
|
14
|
|
15
|
|
-## Development tools
|
|
15
|
+## Building the sources
|
16
|
16
|
|
17
|
17
|
Jitsi Meet uses [Browserify](http://browserify.org). If you want to make changes in the code you need to [install Browserify](http://browserify.org/#install). Browserify requires [nodejs](http://nodejs.org).
|
18
|
18
|
|
|
19
|
+On Debian/Ubuntu systems, the required packages can be installed with:
|
|
20
|
+```
|
|
21
|
+sudo apt-get install npm
|
|
22
|
+sudo npm install -g browserify
|
|
23
|
+cd jitsi-meet
|
|
24
|
+npm install
|
|
25
|
+```
|
|
26
|
+
|
|
27
|
+To build the Jitsi Meet application, just type
|
|
28
|
+```
|
|
29
|
+make
|
|
30
|
+```
|
|
31
|
+
|
19
|
32
|
## Discuss
|
20
|
33
|
Please use the [Jitsi dev mailing list](http://lists.jitsi.org/pipermail/dev/) to discuss feature requests before opening an issue on github.
|
21
|
34
|
|