Furrest City's modified version of OSEM http://osem.io
Find a file
Henne Vogelsang 72b872cc0a Merge pull request #68 from openSUSE/review_140424_fix_tests
Fix failing tests. Replace ruby to 2.1.1 in travis. Update travis config
2014-04-25 15:31:50 +02:00
app Fix failing tests. Replace ruby to 2.1.1 in travis. Update travis config 2014-04-24 22:02:50 +02:00
config Initial Rails4 Port 2014-04-23 15:45:55 +02:00
db Initial Rails4 Port 2014-04-23 15:45:55 +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
spec Fix failing tests. Replace ruby to 2.1.1 in travis. Update travis config 2014-04-24 22:02:50 +02:00
vendor First checkin 2013-01-07 09:04:09 +01:00
.gitignore Starting to document things with rdoc 2014-04-09 13:18:11 +02:00
.travis.yml Fix failing tests. Replace ruby to 2.1.1 in travis. Update travis config 2014-04-24 22:02:50 +02:00
config.ru First checkin 2013-01-07 09:04:09 +01:00
Gemfile Update to rails 4.1 2014-04-23 17:23:21 +02:00
Gemfile.lock Update to rails 4.1 2014-04-23 17:23:21 +02:00
LICENSE Release osem under MIT. Fixes #57 2013-10-18 15:33:59 +02:00
Rakefile First checkin 2013-01-07 09:04:09 +01:00
README.md Add travis badge to README.md 2014-04-10 12:09:21 +02:00

Build Status Code Climate Coverage Status #OSEM The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.

Install OSEM

You can run rails apps in different modes (development, production). For more information about rails and what it can do, see the rails guides.

Run OSEM in development

  1. Clone the git repository to the directory you want Apache to serve the content from.
git clone https://github.com/openSUSE/osem.git
  1. Install all the ruby gems.
bundle install
  1. Install ImageMagick from your distribution repository
  2. Copy the sample configuration files and adapt them
cp config/config.yml.example config/config.yml
cp config/database.yml.example config/database.yml
  1. Setup the database
bundle exec rake db:setup
  1. Run OSEM
rails server
  1. Visit the APP at
http://localhost:3000
  1. Sign up, the first user will be automatically assigned the admin role.

Run OSEM in production

We recommend to run OSEM in production with mod_passenger and the apache web-server. There are tons of guides on how to deploy rails apps on various base operating systems. Check Google ;-)

Documentation

OSEM is extensively (some would say maniacally ;-) documented. You can generate a nice HTML documentation with ''rdoc''

bundle exec rdoc --op doc/app --all -f fivefish app 
xdg-open doc/app/index.html 

Testing

We are using rspec+capybara+factory girl as test suite. You should run it, whenever you change something, with

bundle exec rake rspec