django-outbox-middleware 0.2.2

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangooutboxmiddleware 0.2.2

Your project description goes here

Documentation
The full documentation is at https://django-outbox-middleware.readthedocs.io.


Quickstart
Install Django Outbox Middleware:
pip install django-outbox-middleware
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_outbox_middleware.apps.DjangoOutboxMiddlewareConfig',
...
)
Add it to your MIDDLEWARE:
# if django.VERSION >= (1, 10)
MIDDLEWARE (
...
'django_outbox_middleware.middleware.OutboxMiddleware',
...
)
# else
MIDDLEWARE_CLASSES = (
...
'django_outbox_middleware.middleware.OutboxMiddleware',
...
)


Features

TODO



Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox


Credits
Tools used in rendering this package:

Cookiecutter
cookiecutter-djangopackage



History
0.1.0 (2017-01-31)

First release on PyPI.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.