Metadata-Version: 2.1
Name: core_schema_viewer_app
Version: 1.5.0
Summary: Schema Viewer app
Home-page: https://github.com/usnistgov/core_schema_viewer_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
License: UNKNOWN
Platform: UNKNOWN
License-File: LICENSE.txt

======================
Core Schema Viewer App
======================

Schema Viewer feature for the curator core project.


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

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

.. code:: python

    INSTALLED_APPS = [
        ...
        "core_schema_viewer_app",
    ]


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

.. code:: python

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


3. Oxygen configuration
-----------------------

- For *production* environment, follow the steps described in Oxygen.prod.README.rst
- For *development* environment, follow the steps described in Oxygen.dev.README.rst


