Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 920 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 920 Bytes

Genealogy Data Models

django-gdm-dm django-gdm-v django-gdm-bl

GDM is a set of simple Django models for genealogy based data structures (family trees).

Quick start

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

    INSTALLED_APPS = (
        ...
        'gdm',
    )
  2. Run python manage.py migrate to create the GDM models.

  3. Include the GDM models in your project like this:

    from gdm.models.tree import Person, Family
  4. Start the development server and visit http://127.0.0.1:8000/admin/ to create persons and families (you'll need the Admin app enabled).