So, first created another Linux VM to run these pieces in. It won't need as many cores nor as much RAM as the Jenkins machine, but it will potentially need some more disk space for logs or binaries. So, the specs on this machine:
- 2 cores
- 2 GB RAM
- 60 GB disk
sudo apt-get install git nodejs npm install socket.io
Now, I ran this to get the signaling server source:
git clone https://github.com/luser/simplesignalling
Finally, I started it up:
cd simplesignalling nodejs ./server.js
Now, for steeplechase, we need the following dependencies:
sudo apt-get install python-setuptools
Clone the steeplechase repo:
git clone https://github.com/mozilla/steeplechase
We need to bootstrap the python environment for steeplechase.
cd steeplechase sudo python setup.py install
The machine is now setup and ready to run steeplechase, but without test clients, there is nothing for steeplechase to talk to. Next installment, setting up the test clients.
No comments:
Post a Comment