|
@@ -44,7 +44,7 @@ To build the Jitsi Meet application, just type
|
44
|
44
|
make
|
45
|
45
|
```
|
46
|
46
|
|
47
|
|
-## Working with the library sources (lib-jitsi-meet)
|
|
47
|
+### Working with the library sources (lib-jitsi-meet)
|
48
|
48
|
|
49
|
49
|
By default the library is build from its git repository sources. The default dependency path in package.json is :
|
50
|
50
|
```json
|
|
@@ -72,12 +72,12 @@ It allows to link `lib-jitsi-meet` dependency to local source in few steps:
|
72
|
72
|
```bash
|
73
|
73
|
cd lib-jitsi-meet
|
74
|
74
|
|
75
|
|
-# create global symlink for lib-jitsi-meet package
|
|
75
|
+#### create global symlink for lib-jitsi-meet package
|
76
|
76
|
npm link
|
77
|
77
|
|
78
|
78
|
cd ../jitsi-meet
|
79
|
79
|
|
80
|
|
-# create symlink from the local node_modules folder to the global lib-jitsi-meet symlink
|
|
80
|
+#### create symlink from the local node_modules folder to the global lib-jitsi-meet symlink
|
81
|
81
|
npm link lib-jitsi-meet
|
82
|
82
|
```
|
83
|
83
|
|
|
@@ -90,16 +90,17 @@ cd jitsi-meet
|
90
|
90
|
npm unlink lib-jitsi-meet
|
91
|
91
|
npm install
|
92
|
92
|
```
|
93
|
|
-## Running with webpack-dev-server for development
|
|
93
|
+### Running with webpack-dev-server for development
|
94
|
94
|
|
95
|
95
|
Use it at the CLI, type
|
96
|
96
|
```
|
97
|
|
-node_modules/.bin/webpack-dev-server
|
|
97
|
+make dev
|
98
|
98
|
```
|
99
|
99
|
|
100
|
|
-By default the backend deployment used is `beta.meet.jit.si`, you can point the Jitsi-Meet app at a different backend by using a proxy server. To do this set the WEBPACK_DEV_SERVER_PROXY_TARGET variable, type
|
|
100
|
+By default the backend deployment used is `beta.meet.jit.si`, you can point the Jitsi-Meet app at a different backend by using a proxy server. To do this set the WEBPACK_DEV_SERVER_PROXY_TARGET variable:
|
101
|
101
|
```
|
102
|
|
-WEBPACK_DEV_SERVER_PROXY_TARGET=https://your-example-server.com node_modules/.bin/webpack-dev-server
|
|
102
|
+export WEBPACK_DEV_SERVER_PROXY_TARGET=https://your-example-server.com
|
|
103
|
+make dev
|
103
|
104
|
```
|
104
|
105
|
|
105
|
106
|
The app should be running at https://localhost:8080/
|
|
@@ -122,7 +123,7 @@ network but decrypted on the machine that hosts the bridge.
|
122
|
123
|
|
123
|
124
|
The Jitsi Meet architecture allows you to deploy your own version, including
|
124
|
125
|
all server components, and in that case your security guarantees will be roughly
|
125
|
|
-equivalent to these of a direct one-to-one WebRTC call. This is what's unique to
|
|
126
|
+equivalent to these of a direct one-to-one WebRTC call. This is what's unique to
|
126
|
127
|
Jitsi Meet in terms of security.
|
127
|
128
|
|
128
|
129
|
The [meet.jit.si](https://meet.jit.si) service is maintained by the Jitsi team
|