I'm also of the opinion that Django can only benefit by making the
built-in development web server better.

If I can develop Django projects without the need to install Apache (or
other web server) and use SQLite, that's awesome.  For static files I
can just use something like this:

        (r'^(?P<path>.*)$', 'django.views.static.serve',
{'document_root' : '/path/to/my/files/'})

I can do all my development self-contained in Django and have it
function as if it were hosted.  Multi-threaded would be desired in this
case.  And the barrier to setup and play with Django is much
diminished, I think.

-Rob


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to