source: README@ 6236

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

Trunk uses different command line syntax

File size: 1.1 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 trunk revision 8354 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` runserver
32
33
34
Note: See TracBrowser for help on using the repository browser.