source: README@ 6256

Last change on this file since 6256 was 6256, checked in by RIck van der Zwet, 17 years ago

Link and LinkPool is not working due the complexity and not logic approch. Viewsor crippled for example. Let's try to link Interface directly to an Interface itself and let's see whether this is going to work. Might need the notion of an Alias, but yet to be defined.

File size: 1.0 KB
Line 
1See LICENSE for the license details; The whole of Exodus falls under this
2license.
3Roland van Laar email: roland@wirelessleiden.nl
4
5= Directory/File layout =
6doc = documentation files e.g. papers and transcripts
7exodus = exodus module
8exodus/static = exodus static files
9exodus/templates = exodus template files
10sampleserver = general django layout
11
12= Hacking =
13Install Django 1.0 to $DJANGOROOT
14
15Install Django extentions using http://code.google.com/p/django-command-extensions/wiki/InstallationInstructions
16$ curl -O http://django-command-extensions.googlecode.com/files/django-command-extensions-0.3.tgz
17$ tar xzf django-command-extensions-0.3.tgz
18$ cd django-command-extensions-0.3
19$ python setup.py install
20
21$svn co -r 8354 http://code.djangoproject.com/svn/django/trunk/ $DJANGOROOT
22$ cd $DJANGOROOT
23$ ./sudo python setup.py install
24
25To create the database:
26$ cd $SVNROOT
27$ ./sampleserver/manage.py syncdb --pythonpath=`pwd
28
29To run the developmentserver do
30$ cd $SVNROOT
31$ ./sampleserver/manage.py runserver 8000 --pythonpath=`pwd`
32
33
34
Note: See TracBrowser for help on using the repository browser.