ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

Updated by Holger Just at 2011-12-26 01:30 pm

It's just a quick patch to make chiliproject work out of the box with http://pow.cx/
You just have to copy this code in a file named @config.ru@ config.ru into the root chiliproject folder and it should work.

<pre>
# Rack Dispatcher

# Require your environment file to bootstrap Rails
require File.dirname(__FILE__) + '/config/environment'

# Dispatch the request
run ActionController::Dispatcher.new
</pre>

Back