|
@@ -90,6 +90,19 @@ cd jitsi-meet
|
90
|
90
|
npm unlink lib-jitsi-meet
|
91
|
91
|
npm install
|
92
|
92
|
```
|
|
93
|
+## Running with webpack-dev-server for development
|
|
94
|
+
|
|
95
|
+Use it at the CLI, type
|
|
96
|
+```
|
|
97
|
+node_modules/.bin/webpack-dev-server
|
|
98
|
+```
|
|
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
|
|
101
|
+```
|
|
102
|
+WEBPACK_DEV_SERVER_PROXY_TARGET=https://your-example-server.com node_modules/.bin/webpack-dev-server
|
|
103
|
+```
|
|
104
|
+
|
|
105
|
+The app should be running at https://localhost:8080/
|
93
|
106
|
|
94
|
107
|
## Contributing
|
95
|
108
|
|