Skip to content

Commit

Permalink
add node.js install instructions to README
Browse files Browse the repository at this point in the history
  • Loading branch information
gleneivey committed Feb 20, 2012
1 parent ab077d7 commit a169ed8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.markdown
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ https://www.pivotaltracker.com/projects/481767
To install PairMatic for development or to run a server from your To install PairMatic for development or to run a server from your
local host: local host:


## have node.js installed # install node.js if you haven't before
wget http://nodejs.org/dist/v0.6.11/node-v0.6.11.tar.gz
tar -xzf node-v0.6.11.tar.gz
cd node-v0.6.11
./configure
make
make install # possibly with sudo prefix
# install PairMatic
git clone git://github.com/gleneivey/pairmatic.git git clone git://github.com/gleneivey/pairmatic.git
cd pairmatic cd pairmatic
npm install npm install
Expand All @@ -35,7 +43,7 @@ local host:
Start a PairMatic server by going to the directory where you installed Start a PairMatic server by going to the directory where you installed
it and executing: it and executing:


npm start # possibly with sudo prefix npm start # possibly with sudo prefix


Once running, you should be able to access PairMatic by directing your Once running, you should be able to access PairMatic by directing your
browser to [http://localhost/](http://localhost/) browser to [http://localhost/](http://localhost/)
Expand Down

0 comments on commit a169ed8

Please sign in to comment.