#OPTIONAL : Install the backend management#Clone Git repository
git clone git://github.com/roq-messaging/roq-backend.git >> $INSTALLDIR/roq.log 2>&1cd roq-backendgit checkout develop >> $INSTALLDIR/roq.log 2>&1#Node Packages installationnpm install >> $INSTALLDIR/roq.log 2>&1
Finally, we need instructions to launch the management console, something like:
1. Start RoQ instance (GCM and host manager)
2. Start node.js
3. Start the console by opening ....TODO
Thank you all,
Sabri.
install dependencies. To do that, go into roq-backend folder and run:
npm install
fetch submodules. To do that, go into roq-backend folder and run:
git submodule init
git submodule update --recursive
Run the backend: "./launcher.js web-api" "./launcher.js web-api", what should I do to open the management console ?True, that information is missing. If I remember correctly, the server starts on localhost:3000 . Point your browser to that address and you should see the web UI!
Jehan