Legend:
- Unmodified
- Added
- Removed
-
README
r6180 r6183 4 4 5 5 = Directory/File layout = 6 django= general django layout7 django/exodus = django/exodus 8 media = static mediafiles9 templates =template files6 sampleserver = general django layout 7 exodus = exodus module 8 exodus/static = exodus static files 9 exodus/templates = exodus template files 10 10 11 11 … … 16 16 it as SVNROOT 17 17 18 $ mv $SVNROOT/django/settings.py.tmpl $SVNROOT/django/settings.py 19 Point the DATABASE_NAME to a empty filename of choice. 20 change MEDIA_ROOT to $SVNROOT/media 21 Let template dirs point to: $SVNROOT/templates 18 $ mv $SVNROOT/sampleserver/settings.py.tmpl $SVNROOT/sampleserver/settings.py 19 $ Alter DJANGOROOT to match $SVNROOT 22 20 23 21 To create the database: 24 22 $ cd $SVNROOT 25 $ ./ django-conf/manage.py --pythonpath=`pwd` syncdb23 $ ./sampleserver/manage.py --pythonpath=`pwd` syncdb 26 24 27 25 To run the developmentserver do 28 26 $ cd $SVNROOT 29 $ ./ django-conf/manage.py --pythonpath=`pwd` runserver <8000>27 $ ./sampleserver/manage.py --pythonpath=`pwd` runserver <8000> 30 28 31 29
Note:
See TracChangeset
for help on using the changeset viewer.