GDM is a set of simple Django models for genealogy based data structures (family trees).
-
Add "gdm" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'gdm', )
-
Run
python manage.py migrate
to create the GDM models. -
Include the GDM models in your project like this:
from gdm.models.tree import Person, Family
-
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).