thepan is a web application that lets you search recipes by ingredients.
Start with activating virtualenv.
OS X & Linux:
$ python3.6 -m venv venv
$ . venv/bin/activate
Windows:
> python -m venv venv
> venv/Scripts/activate
Then, install dependencies and migrate.
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver