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

= Directory/File layout =
django        = general django layout
django/exodus = django/exodus
media         = static media files
templates     = template files


= Hacking =
Install django 0.96 Follow the website, via macports
`sudo port install py25-django-devel`
Do a svn checkout svn.wirelessleiden.nl/svn/code/exodus hereafter referred to
it as SVNROOT

$ mv $SVNROOT/django/settings.py.tmpl $SVNROOT/django/settings.py 
Point the DATABASE_NAME to a empty filename of choice.
change MEDIA_ROOT to $SVNROOT/media
Let template dirs point to: $SVNROOT/templates

To create the database:
$ cd $SVNROOT/django
$ ./manage.py syncdb

To run the developmentserver do
$ cd $SVNROOT/django
$ ./manage.py runserver <8000>



