annotate 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
rev   line source
rc-web@2 1 //////////////////////////////////
rc-web@2 2 // NODESCORE SERVER INSTALLATION
rc-web@2 3 //////////////////////////////////
rc-web@2 4
rc-web@2 5 // installation for server running
rc-web@2 6 // debian stable or testing OS
rc-web@2 7 // other systems see here:
rc-web@2 8 // https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
rc-web@2 9
rc-web@2 10 //////////////////////////////////
rc-web@2 11
rc-web@2 12 //////////////////////////////////
rc-web@2 13 // get nodejs dependencies
rc-web@2 14
rc-web@2 15 apt-get update
rc-web@2 16 apt-get install git-core curl build-essential openssl libssl-dev
rc-web@2 17
rc-web@2 18 //////////////////////////////////
rc-web@2 19 // grab and compile from source
rc-web@2 20
rc-web@2 21 mkdir -p /tmp/build/node && cd /tmp/build/node
rc-web@2 22 git clone https://github.com/joyent/node.git .
rc-web@11 23 git checkout v0.8.0
rc-web@2 24
rc-web@2 25 ./configure --openssl-libpath=/usr/lib/ssl
rc-web@2 26 make
rc-web@2 27 make test
rc-web@2 28 make install
rc-web@2 29 node -v
rc-web@2 30
rc-web@2 31 //////////////////////////////////
rc-web@2 32 // get nodescore dependencies
rc-web@2 33 // the node_modules dir should life in the require.path
rc-web@2 34 // ~/
rc-web@2 35
rc-web@2 36 npm install socket.io
rc-web@2 37 npm install node-static
rc-web@2 38 npm install xmlhttprequest
rc-web@2 39 npm install jsdom
rc-web@2 40 npm install jQuery
rc-web@2 41
rc-web@2 42 //////////////////////////////////
rc-web@2 43 // get nodescore
rc-web@2 44
rc-web@3 45 git clone git://gitorious.org/nodescore/nodescore.git nodescore
rc-web@2 46
rc-web@2 47 //////////////////////////////////
rc-web@2 48 //start server
rc-web@2 49
rc-web@2 50 cd nodescore
rc-web@2 51 node nodescore.js