See LICENSE for the license details; The whole of Exodus falls under this
license.  
Roland van Laar email: roland@wirelessleiden.nl

= Directory/File layout =
doc              = documentation files e.g. papers and transcripts
exodus           = exodus module
exodus/static    = exodus static files
exodus/templates = exodus template files
sampleserver     = general django layout

= Hacking =
Install Django trunk revision 8354 to $DJANGOROOT

Install Django extentions using http://code.google.com/p/django-command-extensions/wiki/InstallationInstructions
$ curl -O http://django-command-extensions.googlecode.com/files/django-command-extensions-0.3.tgz
$ tar xzf django-command-extensions-0.3.tgz
$ cd django-command-extensions-0.3
$ python setup.py install

$svn co -r 8354 http://code.djangoproject.com/svn/django/trunk/ $DJANGOROOT
$ cd $DJANGOROOT 
$ ./sudo python setup.py install

To create the database:
$ cd $SVNROOT
$ ./sampleserver/manage.py --pythonpath=`pwd`  syncdb

To run the developmentserver do
$ cd $SVNROOT
$ ./sampleserver/manage.py --pythonpath=`pwd` runserver <8000>



