UbuntuGrok

Differences between revisions 14 and 15
Revision 14 as of 2008-09-30 16:40:39
Size: 894
Editor: ns
Comment:
Revision 15 as of 2008-10-02 13:07:44
Size: 836
Editor: 158
Comment:
Deletions are marked like this. Additions are marked like this.
Line 14: Line 14:
  * {{{bzr checkout bzr+ssh://jelkner@bazaar.launchpad.net/~viejo-team/viejo-code/devel .}}}   * {{{bzr branch lp:viejo-code}}}

This documents the procedure I used to setup a Grok virtual environment for working on the Viejo content management system. Note that as of September 29th, grokproject 0.9 and grok 0.14 work on python2.5. So the easy_install-2.4 can be omitted.

  • 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 branch lp:viejo-code

  • ./bin/buildout

  • ./bin/test

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

UbuntuGrok (last edited 2009-02-05 15:36:28 by 158)