Using pip simply by doing:
pip install django-tastypie-elasticsearch
or by installing from source with:
python setup.py install
In your settings.py add tastypie
and tastypie_elasticsearch
to INSTALLED_APPS
:
INSTALLED_APPS += ( 'tastypie', 'tastypie_elasticsearch', )
You must also add in your settings:
ES_SERVER = '127.0.0.1:9200'