Browse Source

doc: Add dev server steps (#2610)

* doc: Add webpack-dev-server steps
master
Saumeya Katyal 7 years ago
parent
commit
2334eb9967
1 changed files with 13 additions and 0 deletions
  1. 13
    0
      README.md

+ 13
- 0
README.md View File

@@ -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
 

Loading…
Cancel
Save