Changeset 6340 for trunk/README


Ignore:
Timestamp:
Oct 6, 2008, 8:20:41 AM (16 years ago)
Author:
roland
Message:

merge -r6328:6339, some files didn't merge correctly and have been added by hand.
README, Makefile and doc/ have been updated to reflect the buildout changes.
Two unittest have been merged into trunk too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/README

    r6311 r6340  
    1 See LICENSE for the license details; The whole of Exodus falls under this
     1See LICENSE for the license details; Exodus falls under this
    22license. 
    33Roland van Laar email: roland@wirelessleiden.nl
     
    88exodus/static    = exodus static files
    99exodus/templates = exodus template files
    10 sampleserver     = general django layout
    1110
    1211= Hacking =
    13 Install Django 1.0 to $DJANGOROOT
     12Buildout is a tool that automagically builds a development environment
     13for you.
    1414
    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
     15To build the development environment:
     16$ cd $SVNTRUNK
     17$ python bootstrap.py
     18$ bin/buildout
    2419
    2520To create the database:
    26 $ cd $SVNROOT
     21$ cd $SVNTRUNK
    2722$ make init
    2823
    29 To run the developmentserver do
    30 $ cd $SVNROOT
     24To run the developmentserver do:
     25$ cd $SVNTRUNK
    3126$ make debug
    3227
    33 
    34 
     28To run unittests do:
     29$ cd $SVNTRUNK
     30$ bin/test
Note: See TracChangeset for help on using the changeset viewer.