Metadata-Version: 1.0
Name: core-main-app
Version: 1.0.0b3
Summary: Main functionalities for the curator core project
Home-page: https://github.com/usnistgov/core_main_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
License: UNKNOWN
Description: =============
        Core Main App
        =============
        
        This Django reusable app contains the main functionalities for the curator core project.
        
        Pre-requisites
        ==============
        
        * Install git
        * Install python
        * Install pip
        * Create a virtual env
        
        Installation
        ============
        
        Automated installation
        ----------------------
        
        .. warning::
        
            *The automated installation is not yet available.*
        
        Manual installation
        -------------------
        
        .. code:: bash
        
            $ git clone https://myrepo.com/core_main_app.git
            $ cd core_main_app
            $ python setup.py
            $ pip install sdist/*.tar.gz
        
        
        Configuration
        =============
        
        1. Add "core_main_app" to your INSTALLED_APPS setting like this
        ---------------------------------------------------------------
        
        .. code:: python
        
            INSTALLED_APPS = [
                ...
                "core_main_app",
            ]
        
        2. Include the core_main_app URLconf in your project urls.py like this
        ----------------------------------------------------------------------
        
        .. code:: python
        
            url(r'^', include("core_main_app.urls")),
        
Platform: UNKNOWN
