UbuntuGrok

Revision 12 as of 2008-09-30 16:36:49

Clear message

This documents the procedure I used to setup a Grok virtual environment for working on the Viejo content management system.

  • sudo apt-get install python-dev python-setuptools subversion bzr

  • sudo easy_install virtualenv

  • mkdir viejo_virtualenv

  • cd viejo_virtualenv

  • virtualenv --no-site-packages virtualgrok

  • source virtualgrok/bin/activate

  • easy_install grokproject

  • grokproject Viejo

  • cd Viejo

  • rm -rf setup.py buildout.cfg src

  • bzr checkout bzr+ssh://jelkner@bazaar.launchpad.net/~viejo-team/viejo-code/devel .

  • ./bin/buildout

  • ./bin/test

Now, we're good to go TDD Smile :) Start thinking and writing tests, then we'll make them pass!