view INSTALL @ 11:0a8133490050

absorbed metronome.js .css into main css and client files also some minor html5 and css changes
author tzara <rc-web@kiben.net>
date Sat, 07 Jul 2012 07:10:56 +0000
parents 33e6dc370ef7
children bcde7e6d57de
line wrap: on
line source
//////////////////////////////////
// NODESCORE SERVER INSTALLATION 
//////////////////////////////////

// installation for server running 
// debian stable or testing OS
// other systems see here:
// https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager

//////////////////////////////////

//////////////////////////////////
// get nodejs dependencies

apt-get update 
apt-get install git-core curl build-essential openssl libssl-dev

//////////////////////////////////
// grab and compile from source

mkdir -p /tmp/build/node && cd /tmp/build/node
git clone https://github.com/joyent/node.git .
git checkout v0.8.0

./configure --openssl-libpath=/usr/lib/ssl
make
make test
make install
node -v

//////////////////////////////////
// get nodescore dependencies
// the node_modules dir should life in the require.path 
// ~/

npm install socket.io
npm install node-static
npm install xmlhttprequest
npm install jsdom
npm install jQuery

//////////////////////////////////
// get nodescore 

git clone git://gitorious.org/nodescore/nodescore.git nodescore

//////////////////////////////////
//start server

cd nodescore
node nodescore.js