On 3/17/07, Grupo Django <[EMAIL PROTECTED]> wrote: > > > Hello, does someone know how can I configure eclipse with pydev > installed to debug django apps. > I just need to watch some variables, dictionaries... > Thank you. >
I'm not sure what you're asking for exactly. Assuming you have eclipse with pydev installed, you create a debug/run configuration with your djago app's manage.py as the "Main module", make sure django is in the Python path, and specify "runserver 8000 --noreload" as program arguments (assuming you want to listen on port 8000). --noreload makes the development server run the code in the current process, so the debugger can activate at breakpoints you set (but it also means you have to manually re-load the program when you make code changes). This, at least, is what works for me. Cheers, Karen --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

