If you running Eclipse with PyDev you can create a file 'debugServer.py' with the following content:
import os os.environ['DJANGO_SETTINGS_MODULE']='mysite.settings' from django.core import management management.runserver(addr='0.0.0.0', port='8080', use_reloader=False) Then set up Eclipse to run/debug with that file and you can set breakpoint etc right thru the hole process Regards Sten --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

