Metadata-Version: 2.1
Name: core_cache_manager_app
Version: 1.3.0
Summary: Cache management functionalities
Home-page: https://github.com/usnistgov/core_cache_manager_app
Author: NIST EL/ITL Lab
Author-email: itl_inquiries@nist.gov
License: UNKNOWN
Platform: UNKNOWN
License-File: LICENSE.txt

Core Cache Manager App
======================

Cache management feature for the curator core project.


Configuration
=============

1. Add "core_cache_manager_app" to your INSTALLED_APPS setting like this
------------------------------------------------------------------------

.. code:: python

    INSTALLED_APPS = [
        ...
        "core_cache_manager_app",
    ]

2. Include the core_cache_manager_app URLconf in your project urls.py like this
-------------------------------------------------------------------------------

.. code:: python

    url(r'^', include("core_cache_manager_app.urls")),


