Skip to content

Commit

Permalink
updates docs with instructions for INSTALLED_APPS
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanfoulis committed Nov 1, 2012
1 parent 4acfe5a commit 326f1d9
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions docs/installation.rst
Expand Up @@ -38,8 +38,17 @@ packaged fork of `PIL`_).
Configuration
-------------

Add ``"filer"`` to your project's ``INSTALLED_APPS`` setting and run ``manage.py syncdb``
(or ``manage.py migrate`` if you're using `South`_).
Add ``"filer"`` and related apps to your project's ``INSTALLED_APPS`` setting and run ``manage.py syncdb``
(or ``manage.py migrate`` if you're using `South`_).::

INSTALLED_APPS = [
...
'filer',
'easy_thumbnails',
...
]



Note that `easy_thumbnails`_ also has database tables and needs a ``syncdb`` or
``migrate``.
Expand Down

0 comments on commit 326f1d9

Please sign in to comment.