FTL Base Infrastructure


Keywords
django
License
MIT
Install
pip install ftlbase==1.16.3

Documentation

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:

    url(r'^ftlbase/', include('ftlbase.urls')),
    
  3. Run python manage.py migrate to create the ftlbase models.