Skip to content

Commit

Permalink
Add to documentation dependency for INSTALLED_APPS
Browse files Browse the repository at this point in the history
--HG--
branch : develop
  • Loading branch information
zeus committed Nov 3, 2011
1 parent 2678dff commit 1eff997
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/install.rst
Expand Up @@ -6,7 +6,17 @@ Installation
pip install imagestore
* Symlink or copy `imagestore/static/imagestore.css` to your `MEDIA_ROOT`, or write youre own style (staticfiles supported as well).
* Add `imagestore` to your `INSTALLED_APPS`
* Add `imagestore`, `django-tagging` and `sorl.thumbnail` to your `INSTALLED_APPS`.
your `INSTALLED_APPS` should look like::

INSTALLED_APPS = (
....
'imagestore',
'sorl.thumbnail',
'tagging',
'south' # Optionally but recommended
)

* Add `imagestore.urls` to your urls with `namespace='imagestore'`::

urlpatterns = patterns('',
Expand Down

0 comments on commit 1eff997

Please sign in to comment.