Metadata-Version: 2.1
Name: merc_common
Version: 1.0.2.1
Summary: CRAMS API opensource merc-common package
Home-page: https://github.com/CRAMS-Dashboard/crams-api
Author: Monash University e-Research Centre
Author-email: crams@monash.edu
License: 'GNU General Public License v3.0'
Project-URL: Documentation, https://github.com/CRAMS-Dashboard/crams
Project-URL: Source, https://github.com/CRAMS-Dashboard/crams-api
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: Django :: 3.2
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
License-File: LICENSE


Merc Common Package
===================

Merc Common is a Django app common package for CRAMS api open source. Detailed documentation is in the "docs" directory.
Souce code is available at https://github.com/CRAMS-Dashboard/crams-api

Quick start
-----------

1. Add "merc_common" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'merc_common',
    ]

2. Include the merc_common URLconf in your project urls.py like this::

    path('merc_common/', include('merc_common.urls')),

3. Run ``python manage.py migrate`` to create the merc_common models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
   to create a merc_common (you'll need the Admin app enabled).

5. Visit http://127.0.0.1:8000/ to test the application.

