Furrest City's modified version of OSEM http://osem.io
Find a file
Henne Vogelsang b70ba985af Merge pull request #28 from differentreality/cfp
Cfp option to accept changes in events
2013-08-15 02:31:36 -07:00
app Merge pull request #28 from differentreality/cfp 2013-08-15 02:31:36 -07:00
config Adding api/v1/conferences/x/conferences 2013-07-16 17:04:48 +02:00
db Merge pull request #28 from differentreality/cfp 2013-08-15 02:31:36 -07:00
doc First checkin 2013-01-07 09:04:09 +01:00
lib First checkin 2013-01-07 09:04:09 +01:00
public First version of the non-js schedule. Removed the assets from version control. 2013-06-19 13:58:48 +02:00
script First checkin 2013-01-07 09:04:09 +01:00
test Starting to add email sending 2013-01-14 08:49:49 +01:00
vendor First checkin 2013-01-07 09:04:09 +01:00
.gitignore Add bundle to .gitignore 2013-06-21 15:11:32 +00:00
config.ru First checkin 2013-01-07 09:04:09 +01:00
Gemfile xlsx export for registrations list 2013-07-16 09:47:23 +02:00
Gemfile.lock xlsx export for registrations list 2013-07-16 09:47:23 +02:00
Rakefile First checkin 2013-01-07 09:04:09 +01:00
README.md More documentation 2013-08-14 18:45:21 +02:00
README.rdoc First checkin 2013-01-07 09:04:09 +01:00

OSEM

The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.

Local Installation

  • install ImageMagick to your system
  • 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

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]

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"