2013-08-14 18:18:50 +02:00
|
|
|
OSEM
|
2012-09-22 00:40:18 -07:00
|
|
|
====
|
2013-08-14 18:18:50 +02:00
|
|
|
The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.
|
2012-09-22 00:40:18 -07:00
|
|
|
|
2013-08-14 18:45:21 +02:00
|
|
|
Local Installation
|
|
|
|
|
==================
|
|
|
|
|
* install [ImageMagick](http://www.imagemagick.org/) to your system
|
2013-08-14 18:18:50 +02:00
|
|
|
* cp config/config.yml.example config/config.yml
|
|
|
|
|
* cp config/database.yml.example config/database.yml
|
|
|
|
|
* bundle install
|
|
|
|
|
* bundle exec rake db:setup
|
|
|
|
|
* bundle exec rake db:seed
|
|
|
|
|
* GOTO http://0.0.0.0:3000 and register a user
|
|
|
|
|
|
2013-08-14 18:45:21 +02:00
|
|
|
Prodcution Deployment
|
|
|
|
|
=====================
|
|
|
|
|
Coming soon, but basically like any other rails app...
|
|
|
|
|
|
2013-08-14 18:18:50 +02:00
|
|
|
Configuration
|
|
|
|
|
=============
|
|
|
|
|
To make the first registered user an admin
|
|
|
|
|
* rails console
|
2013-08-14 18:45:21 +02:00
|
|
|
* 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"
|