Changeset 6340 for trunk/Makefile
- Timestamp:
- Oct 6, 2008, 8:20:41 AM (16 years ago)
- File:
-
- 1 edited
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
Note:
See TracChangeset
for help on using the changeset viewer.