jmettraux / ruote-web2
- Source
- Commits
- Network (8)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
commit c9c80e01aa09ab572d6b31b015d501023799b7da
tree 8bee806703531b989a4feba03b41e9ecde8d6025
parent 93dffd25cd61dd3f97f40fb224c783fadc948eef
tree 8bee806703531b989a4feba03b41e9ecde8d6025
parent 93dffd25cd61dd3f97f40fb224c783fadc948eef
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Dec 22 05:14:37 -0800 2008 | |
| |
.gitmodules | Tue Sep 16 01:55:36 -0700 2008 | |
| |
CHANGELOG.txt | Thu Apr 02 00:48:15 -0700 2009 | |
| |
CREDITS.txt | Sun Apr 05 21:27:54 -0700 2009 | |
| |
LICENSE.txt | Wed Mar 04 03:54:02 -0800 2009 | |
| |
README.txt | Thu Oct 22 00:18:32 -0700 2009 | |
| |
Rakefile | Tue Sep 16 01:21:58 -0700 2008 | |
| |
TODO.txt | Fri Apr 10 02:57:10 -0700 2009 | |
| |
app/ | Thu May 21 06:20:20 -0700 2009 | |
| |
config/ | Fri Apr 17 00:16:35 -0700 2009 | |
| |
db/ | Sat Mar 07 05:03:47 -0800 2009 | |
| |
doc/ | Tue Sep 16 01:21:58 -0700 2008 | |
| |
lib/ | Thu May 21 06:20:20 -0700 2009 | |
| |
public/ | Thu Apr 16 17:35:32 -0700 2009 | |
| |
script/ | Tue Sep 16 01:21:58 -0700 2008 | |
| |
test/ | Thu May 21 06:20:20 -0700 2009 | |
| |
vendor/ | Tue Mar 31 04:34:28 -0700 2009 |
README.txt
= ruote-web2 WARNING : since this sub-project is ruote 0.9.x based, work has ceased here for now. see http://github.com/jmettraux/ruote-http and http://github.com/kennethkalmer/ruote-kit WARNING : ruote, as a workflow engine, currently relies heavily on threading. So a multiprocess deployment target is not OK. Passenger is not OK either. Ruote (OpenWFEru) is an open source Ruby workflow and [incidentally] BPM engine. Ruote-Web2 is a Ruby on Rails web application wrapping an instance of Ruote and a worklist. WARNING : this project is in a really early stage ! == getting it prerequesite : Rails 2.3.2 sudo gem install rails rack actionpack activerecord activeresource activesupport --no-ri --no-rdoc --source http://gems.rubyonrails.org Make sure to have git at version 1.6+ as well. This sequence of commands will install ruote-web2 in your current directory (under ruote-web2/) git clone git://github.com/jmettraux/ruote-web2.git cd ruote-web2 git submodule init git submodule update sudo rake gems:install rake ruote:install mysql -u root -e 'create database rw2_development CHARACTER SET utf8 COLLATE utf8_general_ci' rake db:migrate rake data:populate Note that "rake ruote:install" will install the source of Ruote and its dependencies under vendor/plugins/ruote_plugin/lib_ruote/ (and try to sudo install two gems (will ask for your password)). You could run "rake ruote:gem_install" instead to install Ruote and its dependencies as gems. If you have trouble with rubygems 1.3.1 on debian/ubuntu, the comments there might help : http://intertwingly.net/blog/2008/11/23/RubyGems-1-3-1-on-Ubuntu-8-10 == running it cd ruote-web2 ruby script/server head to http://localhost:3000, login as admin (password 'admin').
