Your project description goes here
The full documentation is at https://django-outbox-middleware.readthedocs.io.
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',
...
)- TODO
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Tools used in rendering this package: