From 55799aa018b11e772e50a4c5f914eeea02b5df4e Mon Sep 17 00:00:00 2001 From: Henne Vogelsang Date: Wed, 14 Aug 2013 18:45:21 +0200 Subject: [PATCH] More documentation --- README.md | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c7cb6671..a1ca732e 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ OSEM ==== The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences. -Installation -============ -* install [ImageMagick](http://www.imagemagick.org/) +Local Installation +================== +* install [ImageMagick](http://www.imagemagick.org/) to your system * cp config/config.yml.example config/config.yml * cp config/database.yml.example config/database.yml * bundle install @@ -12,9 +12,24 @@ Installation * bundle exec rake db:seed * GOTO http://0.0.0.0:3000 and register a user +Prodcution Deployment +===================== +Coming soon, but basically like any other rails app... + Configuration ============= To make the first registered user an admin * rails console - -> hero = User.find('1') - -> hero.role_ids=[3] +* hero = User.find('1') +* hero.role_ids=[3] + + +Caveats +======= +If you have problems with rails console, try this in the Gemfile + +* gem 'rb-readline', '~>0.4.2' + +If you have problems with jquery-ui try this in the Gemfile + +* gem "jquery-rails", "~> 2.3.0"