Skip to content

ArtProcessors/django-outbox-middleware

Repository files navigation

Django Outbox Middleware

https://travis-ci.org/ArtProcessors/django-outbox-middleware.svg?branch=master

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:

About

No description or website provided.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors