Ok, lots of stuff to put here. um... crap. ok, Structure ========= Conventions =========== ok, bad pun. Installing ========== Development =========== For external development of apps you will need to do the following: get a checkout from SVN: svn co http://us.pycon.org/repo/django/trunk/pycon C:/django/ Set your PYTHONPATH appropriatly: PYTHONPATH=C:/django Set your Django setting module to the development settings file. DJANGO_SETTINGS_MODULE=pycon.devset This settings file assumes you have: progresql installed locally. with the user 'progres' and the DB 'pycon2006' with the password 'pycon2006' Install the applications: python pycon/manage.py --settings=pycon.devset init python pycon/manage.py --settings=pycon.devset install admin python pycon/manage.py --settings=pycon.devset install survey python pycon/manage.py --settings=pycon.devset install mappy python pycon/manage.py --settings=pycon.devset install roomy Start the local dev http server: python pycon/manage.py --settings=pycon.devset runserver