Django DAL¶
Documentation¶
The full documentation is at https://django-dal.readthedocs.io.
Quickstart¶
Install Django DAL:
$ pip install django-dal
Add django-dal to your INSTALLED_APPS
INSTALLED_APPS = [
# ...
'django_dal',
# ...
]
Running Tests¶
Does the code actually work?
$ source <YOURVIRTUALENV>/bin/activate
$ (myenv) $ pip install tox
$ (myenv) $ tox