Installation
To install dcodex into a Django project without using dcodex-cookiecutter, first install the module with pip:
pip install dcodex
Then add dcodex and its dependencies to your INSTALLED_APPS
in your settings:
INSTALLED_APPS += [
# dcodex dependencies
"adminsortable2",
'easy_thumbnails',
'filer',
'mptt',
'imagedeck',
# dcodex apps
"dcodex",
]
See also the insallation instructions for other dcodex modules.