RESTful workflow engine

(or rather RESTful Rails envelope to OpenWFEru)

getting it (zip release)

There is a binary release at openwferu-kisha-0.9.17.1384.zip

getting it (fresh from the svn)

Run the following from your command line :

    svn checkout http://openwferu.rubyforge.org/svn/trunk/kisha
    cd kisha
    rake rails:freeze:edge TAG=rel_2-0-2
    cd vendor
    svn checkout http://openwferu.rubyforge.org/svn/trunk/openwfe-ruby/lib/openwfe

setting up the db (MySQL)

Don’t forget to create a ‘kisha_development’ database :

    cd kisha
    mysql -u root -p -e "create database kisha_development CHARACTER SET utf8 COLLATE utf8_general_ci;"
    rake db:migrate

(if you wish to set up another database, Kisha is just a plain Rails application, follow the Rails guidelines).

running it

Start Rails with :

    cd kisha
    ruby script/server

head to http://localhost:3000/processes to play with it.