GitPedia

Familytree

A very incomplete Django-based genealogy web app.

From dwdyer·Updated June 18, 2026·View on GitHub·

Before installing the requirements, ensure the pre-requisites for Pillow (a Python imaging library) are satisfied. On MacOS run the following command to ensure X11 headers are available (assumes Xcode is installed): The project is written primarily in Python, distributed under the GNU Affero General Public License v3.0 license, first published in 2010. Key topics include: ancestry, django, family-tree, genealogy, python.

Family Tree Django Web App

Python Virtual Environment

This project requires Python 3.10 or later.

mkdir ~/virtualenv
virtualenv -p <path_to>/python3 ~/virtualenv/familytree
. ~/virtualenv/familytree/bin/activate

Before installing the requirements, ensure the pre-requisites for Pillow (a
Python imaging library) are satisfied. On MacOS run the following command to
ensure X11 headers are available (assumes Xcode is installed):

xcode-select --install

On Ubuntu, install these libraries first to ensure JPEG support is included:

sudo apt-get install libfreetype6-dev libjpeg62 libjpeg62-dev libpng-dev

Then install the project-specific Python libraries:

pip install -r ~/familytree/requirements.txt

MacOS Issues

Ensure pkg-config is available by installing it with Homebrew and making it available on
the $PATH.

If you have problems with loading MySQL libraries on MacOS, this may help:
https://stackoverflow.com/a/61211114/5171

Database Setup (MySQL)

CREATE DATABASE familytree CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'familytree'@'localhost' IDENTIFIED BY '<db_password>';
GRANT ALL PRIVILEGES ON familytree.* TO 'familytree'@'localhost';

Django Settings

cp secret_settings.template secret_settings.py

Edit secret_settings.py to provide your own OpenCage, MapBox and Dropbox API
keys.

Contributors

Showing top 3 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from dwdyer/familytree via the GitHub API.Last fetched: 6/22/2026