I’ve been working a soon-to-be-released app called “OpenCFSummitWare” (a.k.a. “Engage” but that name was taken on Google Code) for a while now, and it’s the application we’ll be using to manage proposals, scheduling, and attendee information for OpenCF Summit.
The inspiration for the application is the excellent OpenConferenceWare that was created for the Open Source Bridge conference. Obviously we want to run a CFML conference on a CFML app, but it saved me countless hours by having an extremely strong model on which to base our new application.
OpenConferenceWare is written in Ruby, and since I have zero experience with Ruby (at this point anyway) it took a bit of work to install the app and get it up and running. With a bit of help from the OpenConferenceWare Google Group and some tenacity I got it running, so I thought I’d share the step-by-step process here.
Note that this assumes you’re starting with a clean system or at least one that hasn’t ever had Ruby (and some of the other tools outlined below) installed on it. You can do this all in one shot, and probably in a much more logical order, so what you see here is the step-by-step I went through as I ran into missing items while trying to install OpenConferenceWare. (Note that I am * not* doing the optional MySQL database steps, so I think it uses SQLite by default.)
- Install git:
sudo apt-get install git - Clone the OpenConferenceWare git repo:
git clone git://github.com/igal/openconferenceware.git - Install Ruby:
sudo apt-get install ruby - Install Ruby Gems:
sudo apt-get install rubygems1.8 - Install additional tools necessary for building and compiling:
sudo apt-get install ruby1.8-dev build-essential gcc autoconf libtool - Install the MySQL development libraries:
sudo apt-get install libmysqlclient-dev - Install XML/XSLT libraries:
sudo apt-get install libxml2-dev libxslt1-dev - Install SQLite3 libraries:
sudo apt-get install libsqlite3-dev - Install rake:
sudo apt-get install rake - Install the bundler gem:
sudo gem install bundler - Install the MySQL gem:
sudo gem install mysql - Create a symlink to the bundle command:
sudo ln -s /var/lib/gems/1.8/bin/bundle /usr/local/bin/bundle - Go into the openconferenceware project directory you cloned in step 2 above:
cd openconferenceware - Install the necessary libraries for the application:
bundle install - Update the styles:
rake bridgepdx:styles - Set bridgepdx to be the default theme.
- Navigate to openconferenceware/config
- Create a new file called theme.txt
- Add the following line to theme.txt:
bridgepdx - Save the file
- In the openconferenceware directory, create the databases:
rake db:create:all - Finish the database creation, populate database with sample data, and set the admin password:
rake setup:sample
(If you don’t want any sample data, just do rake setup instead of rake setup:sample) - Startup the app:
ruby script/server - Navigate to http://localhost:3000/admin and log in!
Pay special attention to step 16 if you’re getting an error along the lines of “bridgepdx theme broken”–that simply means you haven’t set a default theme in openconferenceware/config/theme.txt
Final note: this setup is intended for running on a local development box, not for production! If you’re interested in additional performance and security settings for production, make sure and check out the installation instructions on github.
Thanks to Igal and the entire team for such a great open source conference management app on which I could model the app we’ll be using for OpenCF Summit!
I'll keep you posted Jim–should have something live and limping (or maybe even kicking) in another week or so.
Looking forward to seeing what you come up with! I was considering hacking on Mura if we ever do another NCDevCon… definitely a need for a nice conference app in the CFML space.