-
Notifications
You must be signed in to change notification settings - Fork 0
v0.2.0 Build Recipe (Ubuntu 11.04)
The following recipe was used to build a Log.io environment on a fresh Ubuntu 11.04 install, using node.js v0.4.12:
-
Install node.js dependencies
sudo apt-get install g++ make git libssl-dev
-
Download, compile node.js source
mkdir ~/downloads cd downloads wget "http://nodejs.org/dist/node-v0.4.12.tar.gz" tar -xzvf node-v0.4.12.tar.gz cd node-v0.4.12/ ./configure make sudo make install
-
Install NPM
curl http://npmjs.org/install.sh | sudo sh
-
Install node.js packages
sudo npm install -g socket.io socket.io-client connect underscore
-
Get Log.io source
cd ~/downloads git clone git://github.com/NarrativeScience/Log.io.git
-
Install server and/or harvester
cd Log.io/bin/ ./configure sudo ./install/server sudo ./install/harvester
-
Launch harvester
sudo /etc/init.d/log.io-harvester start