Skip to content

Commit

Permalink
Add note about django-debug-toolbar. Fixes #222.
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardopires committed Jul 31, 2015
1 parent ea3edf4 commit 29c9a39
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/use.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,25 @@ When set, ``django-tenant-schemas`` will set the search path only once per reque

Third Party Apps
----------------

Celery
~~~~~~

Support for Celery is available at `tenant-schemas-celery <https://github.com/maciej-gol/tenant-schemas-celery>`_.

django-debug-toolbar
~~~~~~~~~~~~~~~~~~~~

`django-debug-toolbar` routes need to be added to `urls.py` (both public and tenant) manually.

.. code-block:: python
from django.conf import settings
from django.conf.urls import include
if settings.DEBUG:
import debug_toolbar
urlpatterns += patterns(
'',
url(r'^__debug__/', include(debug_toolbar.urls)),
)

0 comments on commit 29c9a39

Please sign in to comment.