django-devserver icon indicating copy to clipboard operation
django-devserver copied to clipboard

A drop-in replacement for Django's runserver.

Results 59 django-devserver issues
Sort by recently updated
recently updated
newest added

In Django 1.3+ you can have multiple caches. As the Cache*Modules patch django.core.cache.cache they won't track accesses to any other caches.

When a request comes in that is a redirect because a trailing slash has been omitted, devserver presents an error: ``` File "[…]/devserver/modules/profile.py", line 19, in process_complete duration = datetime.now()...

It would be cool if the panels from DDT and Devserver were the same, and they only rendered a different template on output. This would allow for an ecosystem of...

Accepted

When this is turned on, some of my sites pages never finish loading: this includes some admin pages. It seems like it may be related to loading up some javascript...

Trackeback Environment: Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 1.3 Python Version: 2.7.1 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.markup', 'codrspace', 'devserver'] Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware',...

I often get this error: AttributeError: 'ProfileSummaryModule' object has no attribute 'start'. I run with werkzeug on. Traceback: http://paste.pocoo.org/show/369519/ The weird thing is that if I remove 'devserver.modules.profile.ProfileSummaryModule' from DEVSERVER_MODULES,...

When using the devserver profiler, this error propagates no matter what view I'm using. Here's the full traceback ``` Traceback: File "/usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response 101. request.path_info) File "/usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/django/core/urlresolvers.py" in resolve...

Also happens with other modules (the memory one i believe). line-profiler is installed correctly via pip, any thoughts? stacktrace: HackBook-Air:readrboard tbrock$ ./manage.py runserver 8080 Traceback (most recent call last): File...

Hi I installed ver 0.1.5 from easy_install and there is no way to turn on werkzeug. In one of the last revisions it was disabled by default and there is...

When I remove `django.contrib.sessions.middleware.SessionMiddleware` then I got next trace: ``` File "/usr/share/pyshared/django/core/servers/basehttp.py", line 674, in __call__ return self.application(environ, start_response) File "/usr/share/pyshared/django/core/handlers/wsgi.py", line 245, in __call__ response = middleware_method(request, response) File...