Skip to content
This repository was archived by the owner on Mar 25, 2019. It is now read-only.

Installation

bartzon edited this page May 11, 2011 · 1 revision

Install instructions

You'll need a Ruby on Rails installation, served by the webserver of your choice. See http://rubyonrails.org/download for installation instructions.

  1. Either clone the git repository or download a packaged archive.
$ git clone git://github.com/NPO/codem-schedule.git
or
visit https://github.com/NPO/codem-schedule/archives/master
  1. Install the required gems.
$ bundle install
  1. Run the installer rake task, which will setup the application.
$ rake codem:install
  1. Use cron or a similar tool to trigger the status update task. For example, to run the task every 2 minutes, use:
*/2 * * * * curl -s http://localhost:3000/api/schedule
  1. Start the server, and you're ready to go!
$ rails server

Clone this wiki locally