Hi folks,
Well, I'm proud to announce that I've upgraded Pylons in Project HQ, and that I'm close to another release. I've got some tidying up to do, and I need to track down any bugs I might have introduced.
The Subversion repository at SourceForge.net is up to date with the latest code, but when I release version 0.1.4, I will move Project HQ's code over to Bazaar at Launchpad.net.
If you would like to help test Project HQ, and get it ready for release, please checkout the latest version from Subversion and log bugs in the Version 0.1.3 bug reports forum thread.
To checkout Project HQ from Subversion, and package it as an egg, ready for deployment, run the following commands:
@:~$ svn co https://openpm-org.svn.sourceforge.net/svnroot/openpm-org/trunk projecthq
@:~$ cd projecthq
@:~$ python setup.py bdist_egg
Then you should have an egg file in a "dist" directory. Follow the installation instructions in the documentation to set up a virtual environment, except for the part about creating a configuration file. After that you'll need to set up your local development database:
@:~$ paster setup-app development.ini
Then, instead of setting up a web server, use the "paster" utility to run the development version of Project HQ:
@:~$ paster serve development.ini --reload
Then you can simply visit http://localhost:5000/ in your browser, and you'll get to Project HQ.
