-----------------
.. note:: ``django-staticfiles`` is a backport of the staticfiles app in
Django contrib. If you're upgrading from ``django-staticfiles`` < ``1.0``,
you'll need to make a few changes. See changes below.
* Renamed ``StaticFileStorage`` to ``StaticFilesStorage``.
* Application files should now live in a ``static`` directory in each app
(previous versions of ``django-staticfiles`` used the name ``media``,
which was slightly confusing).
* The management commands ``build_static`` and ``resolve_static`` are now
called ``collectstatic`` and ``findstatic``.
* The settings ``STATICFILES_PREPEND_LABEL_APPS`` and
``STATICFILES_MEDIA_DIRNAMES`` were removed.
* The setting ``STATICFILES_RESOLVERS`` was removed, and replaced by the new
``STATICFILES_FINDERS`` setting.
* The default for ``STATICFILES_STORAGE`` was renamed from
``staticfiles.storage.StaticFileStorage`` to
``staticfiles.storage.StaticFilesStorage``
* If using ``runserver`` for local development (and the setting
``DEBUG`` setting is ``True``), you no longer need to add
anything to your URLconf for serving static files in development.