Metadata-Version: 2.1
Name: moarc-framework
Version: 0.9
Summary: A Django app Moarc Framework.
Home-page: https://www.example.com/
Author: Eduardo Moron
Author-email: danix799@gmail.com
License: BSD-3-Clause
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: djangorestframework
Requires-Dist: unidecode

=====
Moarc Framework
=====

Moarc Framework is a Django app to improve cruds, templates and views.

Detailed documentation is in the "docs" directory.

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

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

    INSTALLED_APPS = [
        ...
        'moarcframework',
    ]

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

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

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

4. Start the development server and visit http://127.0.0.1:8000/admin/

