Skip to content

Commit

Permalink
add collectstatic step to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
manelclos committed Feb 19, 2016
1 parent 85b1c6d commit b542cce
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Configuration
=============

The only mandatory configuration is adding ``import_export`` to your
``INSTALLED_APPS``. This isn't necessary, if admin integration is not
used.
You only need to perform this configuration step if you use
django-import-export in the admin.

Add ``import_export`` to your ``INSTALLED_APPS``:

INSTALLED_APPS = [
# ...
'import_export',
]

Deploy static files:

$ python manage.py collectstatic

0 comments on commit b542cce

Please sign in to comment.