(Care: Project is actually in progress)
GeneaFamily is a Django project for make a family tree.
This project is written in Python 3.6 and made with Django 1.11.
C/R/U/D == Create/Read/Update/Delete.
- C/R/U/D a member
- C/R/U/D a event type (Not a event)
- C/R/U/D a event
- Make a relationship between members
Clone this repo:
git clone [email protected]:Hugo-prod/GeneaFamily.git
Go in the repo:
cd GeneaFamily
Make a python environment with VirtualEnv:
virtualenv .venv
Active the environment:
.venv/bin/activate
Download and install the libs:
pip install -r requirements.txt
Make migrations:
./manage.py makemigrations
Make DB:
./manage.py migrate
Launch server:
./manager.py runserver
Now, open your browser (localhost:8000
) and make your Genealogy Tree.