Changeset 6340 for trunk/README
- Timestamp:
- Oct 6, 2008, 8:20:41 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r6311 r6340 1 See LICENSE for the license details; The whole ofExodus falls under this1 See LICENSE for the license details; Exodus falls under this 2 2 license. 3 3 Roland van Laar email: roland@wirelessleiden.nl … … 8 8 exodus/static = exodus static files 9 9 exodus/templates = exodus template files 10 sampleserver = general django layout11 10 12 11 = Hacking = 13 Install Django 1.0 to $DJANGOROOT 12 Buildout is a tool that automagically builds a development environment 13 for you. 14 14 15 Install 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 http://code.djangoproject.com/svn/django/tags/releases/1.0/ 22 $ cd $DJANGOROOT 23 $ ./sudo python setup.py install 15 To build the development environment: 16 $ cd $SVNTRUNK 17 $ python bootstrap.py 18 $ bin/buildout 24 19 25 20 To create the database: 26 $ cd $SVN ROOT21 $ cd $SVNTRUNK 27 22 $ make init 28 23 29 To run the developmentserver do 30 $ cd $SVN ROOT24 To run the developmentserver do: 25 $ cd $SVNTRUNK 31 26 $ make debug 32 27 33 34 28 To run unittests do: 29 $ cd $SVNTRUNK 30 $ bin/test
Note:
See TracChangeset
for help on using the changeset viewer.