summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-22 17:18:14 +0200
committerAzul <azul@leap.se>2013-02-27 09:47:42 +0100
commit1a369be11b776cd75b3c046fa508ea1bca499227 (patch)
tree72694abe50e4210c7389a9256469b6d6821640d4 /INSTALL.md
parent044a11e780967d7fee0af5a9736ce7db4cd6007d (diff)
seperated troubleshoot from install
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md16
1 files changed, 12 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index ce17f39..4a2a5b9 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,10 +1,13 @@
# Installation #
+Please see TROUBLESHOOT.md if you run into any issues during install.
+
## TL;DR ##
-Install git, ruby, rubygems, bundler and couchdb on your system. Then run
+Install git, ruby 1.9, rubygems and couchdb on your system. Then run
```
+gem install bundler
git clone git://github.com/leapcode/leap_web.git
cd leap_web
bundle install
@@ -13,6 +16,8 @@ git submodule update
bundle exec rails server
```
+You will find Leap Web running on `localhost:3000`. Check out the Cert Distribution section below for setting up the cert and server config.
+
## Requirements ##
The webapp only depends on very basic ruby packages and installs the other requirements as gems through bundler.
@@ -37,11 +42,13 @@ Simply clone the git repository:
### Gems ###
-We install most gems we depend upon through [bundler](http://gembundler.com). However the bundler gem needs to be installed and the `bundle` command needs to be available to the user used for deploy.
+We install most gems we depend upon through [bundler](http://gembundler.com). First install bundler
-### Bundler ###
+```
+ gem install bundler
+```
-Install all the required gems:
+Then install all the required gems:
```
bundle install
```
@@ -68,3 +75,4 @@ If you want to use that functionality please add your provider files the public/
bundle exec rails server
```
+You'll find Leap Web running on `localhost:3000`