doc: Add dev server steps (#2610)

* doc: Add webpack-dev-server steps
This commit is contained in:
Saumeya Katyal 2018-03-19 20:46:01 +05:30 committed by bgrozev
parent 04bd4a9038
commit 2334eb9967
1 changed files with 13 additions and 0 deletions

View File

@ -90,6 +90,19 @@ cd jitsi-meet
npm unlink lib-jitsi-meet
npm install
```
## Running with webpack-dev-server for development
Use it at the CLI, type
```
node_modules/.bin/webpack-dev-server
```
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
```
WEBPACK_DEV_SERVER_PROXY_TARGET=https://your-example-server.com node_modules/.bin/webpack-dev-server
```
The app should be running at https://localhost:8080/
## Contributing