InstallationΒΆ

Installation using pip:

pip install django-hordak

Add to installed apps:

INSTALLED_APPS = [
    ...
    'hordak',
]

Run the migrations:

./manage.py migrate

You should now be able to import from Hordak:

from hordak.models import Account, Transaction, ...