Andres Vargas - zodman

django + werkzeug con uwsgi

De echo no necesita modificar en nada el uwsgi. Simplemente tu modulo application tiene que pasar por debugger:

from werkzeug.debug import DebuggedApplication

os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() application = DebuggedApplication(application, evalex=True)

Es importante poner en settings :

 DEBUG_PROPAGATE_EXCEPTIONS = True

#Django #Python #Linux #Planetalinux