Yet another WSGI Paste factory for paste
Project description
Introduction
Yet another pastes factories for django and werkzeug
What is dj.paste
It is just another wsgi wrappers:
one for django
one for getting an app factory for werkzeug’s DebuggedApplication
How to use dj.paste
Django App
With paste, just add another app entry with a django_settings_module variable to point to your django settings
[composite:main] use = egg:Paste#urlmap / = foo [app:foo] use=egg:dj.paste django_settings_module=foo.settings
DebuggedApplication App
With paste, just add another app entry with a django_settings_module variable to point to your django settings
[DEFAULT] debug=true [composite:main] use = egg:Paste#urlmap / = p [pipeline:p] pipeline = exc foo [app:foo] use=egg:dj.paste django_settings=foo.settings [filer:exc] use=egg:dj.paste#debug
DOCTESTS
django factory
Checking that everything is in place:
>>> resp = app.get('/') >>> 'first django' in resp.body.lower() True
Changelog
1.0
Initial release