Move installation to main wiki page

hawkfalcon 2013-11-07 09:16:50 -08:00
parent 8e7ed805d6
commit 6de4415fa5
1 changed files with 30 additions and 1 deletions

31
Home.md

@ -1,3 +1,32 @@
Welcome to the haste-server wiki!
For detailed installation instructions, see [here](https://github.com/seejohnrun/haste-server/wiki/Installation).
Installation instructions for HasteBin: (the linux edition)
1. Install dependancies
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core
sudo apt-get install redis-server
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2. Install node.js
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
git clone git://github.com/joyent/node.git
cd node
./configure
make
sudo make install
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3. Install hastebin
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
git clone git://github.com/seejohnrun/haste-server.git
cd haste-server
npm install
npm install hiredis #optional
npm start
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
And you should have hastebin!
Note: It will run on port 7777 by default