Furrest City's modified version of OSEM http://osem.io
Find a file
2013-08-14 18:35:21 +02:00
app Merge pull request #34 from differentreality/admin_events_list 2013-07-29 04:40:25 -07:00
config Adding api/v1/conferences/x/conferences 2013-07-16 17:04:48 +02:00
db Document the installation a bit, run last 3 migrations 2013-08-14 18:35:21 +02: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 Document the installation a bit, run last 3 migrations 2013-08-14 18:35: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.

Installation

  • 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

Configuration

To make the first registered user an admin

  • rails console -> hero = User.find('1') -> hero.role_ids=[3]