simple listing/category search app to demo the full test search features newly introduced to django recently.
Useful as a very very basic demo to illustrate the full MVC implementation of the functionality.

requires postgresql because full text search is not covered quite as much in the default(mysql).
Useful link for pgsql installation/setup:

... Note I have hence updated DATABASES in settings.py accordingly

To get this working, clone this git:
git clone https://github.com/kumrzz/kgdjangopgsqlsearch.git
then inside the new directory:
python manage.py makemigrations
python manage.py migrate
sometimes a simple migrate doesn't work and the fixtures row mioght fail, so:
python manage.py migrate srchdemoapp
python manage.py loaddata srchdemoapp/fixtures/fixtures

then fire up django:
python manage.py runserver

(just in case)to clear the database:
python manage.py flush