djangocms-site-search 0.2.3

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangocmssitesearch 0.2.3

Django model based search for Django CMS

The reason I created this was simply to avoid the overhead of using third party applications such as haystack.
I was deploying an app on Amazons Elastic Beanstalk that will run on one or more instance and did not
want the hassle of trying to save the index results in a centralized storage. I also did not want another instance
just to act as a search endpoint like solr etc.
Doing it this way by saving the results in the database makes it extremely portable.
On publishing a page, an index item is added to the model.
On unpublishing or deleting its removed.


Installation
Installation with pip:
$ pip install djangocms-site-search


Setup
Add the following apps to the INSTALLED_APPS ensuring its below cms:
INSTALLED_APPS = (
...
'cms',
'site_search',
)
Add the url routes to the project in urls.py:
urlpatterns = [
url(r'^', include('site_search.urls', 'search')),
]


Documentation
Please head over to our documentation for all
the details on how to install and use the django CMS site search.


License
The project is licensed under the MIT license.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.