Skip to main content

Your project description goes here

Project description

https://badge.fury.io/py/django-outbox-middleware.svg https://travis-ci.org/ArtProcessors/django-outbox-middleware.svg?branch=master https://codecov.io/gh/ArtProcessors/django-outbox-middleware/branch/master/graph/badge.svg

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:

History

0.1.0 (2017-01-31)

  • First release on PyPI.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page