A flexible proposal/voting workflow system for teams of people.
TBD.
TBD.
TBD.
Development takes place on GitHub in the quorum project. Issue tracking, documentation, and downloads are provided there.
Installing the current development version requires Git, a distributed source code management system and virtualenv. If you do not already have virtualenv, you can install it quite easily:
sudo easy_install virtualenvOnce you have the virtualenv command, create a new virtual environment:
virtualenv --no-site-packages --distribute Quorum
cd QuorumNow we can populate the virtual environment with the Quroum source repository and get the package ready to use:
. bin/activate
git init
git remote add origin https://github.com/oftn/quorum.git
git pull origin develop
(cd src; python setup.py develop)You can upgrade to the latest version at any time:
(git pull; cd src; python setup.py develop)You can now run the development application server:
paster serve --reload etc/development.iniIf you would like to make changes and contribute them back to the project, fork the GitHub project, make your changes, and submit a pull request. This process is beyond the scope of this documentation; for more information, see GitHub’s documentation.