diff options
author | Azul <azul@leap.se> | 2012-10-22 17:18:14 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-02-27 09:47:42 +0100 |
commit | 1a369be11b776cd75b3c046fa508ea1bca499227 (patch) | |
tree | 72694abe50e4210c7389a9256469b6d6821640d4 /INSTALL.md | |
parent | 044a11e780967d7fee0af5a9736ce7db4cd6007d (diff) |
seperated troubleshoot from install
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -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` |