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:
https://djangogirls.gitbooks.io/django-girls-tutorial-extensions/content/optional_postgresql_installation/
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