npm installInstall required depencies.
npm startThis will start express and webpack in development mode: whenever you save a file, the build will be redone (it takes 3s), and you can refresh the page to get the new result. It also starts local websocket proxy server.
Connect to http://localhost:8080 in your browser. Also specify correct server ip in url param.
npm run buildAfter calling this, it will build app bundle with minified code (in /src/dist/ directory). It may take longer than development setup. By default webmc connects to https://webmcproxy.glitch.me.
Then you have to host built files on some simple http server like http-server.
You can also setup your own proxy server. First of all install only production depencies by running npm install --only=production. Then, all you have to do is to run npm run proxy on server and change some configs in /src/assets/config.json.
If you want to just download webmc production files click here.
Here are the instructions on how to do it correctly click here.