Skip to content

Commit

Permalink
missing django-query-exchange dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kmike committed Jan 5, 2012
1 parent 4044a47 commit 9c2b3b4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ Requirements
* `yappi <http:https://code.google.com/p/yappi/>`_ for thread-aware live server profiling
that can be enabled and disabled at run time;
* `Pympler <http:https://code.google.com/p/pympler/>`_ for memory debugging;
* `psutil <http:https://code.google.com/p/psutil/>`_ for system resource usage investigation.
* `psutil <http:https://code.google.com/p/psutil/>`_ for system resource usage investigation;
* `django-query-exchange <https://github.com/daevaorn/django-query-exchange>`_.

Dashboard remplates are based on `Bootstrap <http:https://twitter.github.com/bootstrap/>`_ toolkit.

Expand All @@ -23,6 +24,7 @@ Installation
Make sure the requirements are installed::

pip install yappi pympler psutil
pip install git+https://github.com/daevaorn/django-query-exchange.git#egg=django-query-exchange

and install django-profiling-dashboard using pip::

Expand All @@ -31,7 +33,15 @@ and install django-profiling-dashboard using pip::
Usage
=====

1. Add ``'profiling_dashboard'`` to ``INSTALLED_APPS``;
1. Add ``'profiling_dashboard'`` and ``'query_exchange'`` to ``INSTALLED_APPS``::

INSTALLED_APPS = (
# ...
'query_exchange',
'profiling_dashboard',
# ...
)

2. include 'profiling_dashboard.urls' in your urls.py::

urlpatterns = patterns('',
Expand Down

0 comments on commit 9c2b3b4

Please sign in to comment.