Changeset 6340
- Timestamp:
- Oct 6, 2008, 8:20:41 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 3 edited
- 7 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r6319 r6340 1 SQLDB=" sqllite.db"1 SQLDB="exodus.db" 2 2 3 3 help: … … 9 9 debug: 10 10 #Run server in extra debugging mode 11 @./ sampleserver/manage.py runserver_plus 8000 --pythonpath=`pwd`11 @./bin/django runserver_plus 12 12 13 13 run: 14 14 #Run server in normal power mode 15 @./ sampleserver/manage.py runserver 8000 --pythonpath=`pwd`15 @./bin/django runserver 16 16 17 17 init: 18 18 #Re-init database 19 @echo "no" | ./ sampleserver/manage.py syncdb --pythonpath=`pwd`19 @echo "no" | ./bin/django syncdb 20 20 21 21 debug-init: … … 33 33 #Intended usage for batch runs only e.g. no debug server 34 34 35 36 -
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 -
trunk/doc/README
r6281 r6340 3 3 exodusmodels.dot is a graphviz file which shows the exodus database. 4 4 5 Install the djangotrunk and the django_extensions6 which can be fetched from:7 http://code.google.com/p/django-command-extensions/8 9 Add 'extensions' to settings.py10 11 5 Using the djangotrunk execute: 12 $ ./ manage.pygraph_models exodus > exodusmodels.dot6 $ ./bin/django graph_models exodus > exodusmodels.dot 13 7 14 8 = Debug Django = 15 9 16 Install django_extensions, see above for installation description.17 Install Werkzeug from: http://werkzeug.pocoo.org/download18 19 10 Using werkzeug: 20 $ ./ manage.pyrunserver_plus11 $ ./bin/django runserver_plus -
trunk/exodus/settings.py
r6339 r6340 6 6 7 7 ADMINS = ( 8 ('Administrator', 'admin@example.org'), 8 ('rick', 'rick@wzoeterwoude.net'), 9 ('roland','roland@micite.net'), 9 10 ) 10 11 … … 59 60 'django.contrib.sites', 60 61 'django.contrib.admin', 61 'django.contrib.databrowse', 62 'django.contrib.databrowse', 63 'django_extensions', 62 64 'exodus', 63 65 )
Note:
See TracChangeset
for help on using the changeset viewer.