Metadata-Version: 2.1
Name: ftlbase
Version: 1.13.4
Summary: FTL Base Infrastructure
Home-page: https://github.com/waslucena/ftlbase
Author: Washington Lucena
Author-email: yourname@example.com
License: MIT
Keywords: django
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content


========
FTL Base
========

FTL base project.

Detailed documentation is in the "docs" directory.

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

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

    INSTALLED_APPS = [
        ...
        'ftlbase',
    ]

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

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

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



