STRUCTURE OF THE SAMPLE PROJECT:
--------------------------------

All django-apps starting with cms... -> Purpose is only managing database operations, (and django-admin interface).
All django-apps starting with api... -> Purpose is accessing app functionality using api rest interface.
All django-apps starting with web... -> Purpose is accessing app functionality using web html interface.

In this example is implemented only the content managing system, 'cms_legal_docs', (with django-admin interface).

Api and web interfaces are not implemented in this sample code.


YOU SHOULD CREATE A VIRTUALENV AND A SUPERUSER BEFORE USING THIS APP.

Command line example:
    virtualenv venv
    source venv/bin/activate
    pip install -r requirements.txt
    python manage.py runserver

Sample code is supplied with a sqlite3 database and a dummy superuser:
    username: 'user'
    password: 'user'

For more details about starting a django project, please read django documents in: https://docs.djangoproject.com
