Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 470 Bytes

installation.rst

File metadata and controls

24 lines (14 loc) · 470 Bytes

Installation

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'