satyaveerendra / djangosearch

Automatically exported from code.google.com/p/djangosearch
0 stars 0 forks source link

No documentation of this project #12

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
There is not clear documentation.

What version of the product are you using? On what operating system?
using djagosearch on ubuntu

Please provide any additional information below.
when i used the same example of given in readme.txt and wrote
import djangosearch
from djangosearch import ModelIndex
class Event1(models.Model):
       title = models.CharField(max_length=255)
       date = models.DateField()
       is_outdoors = models.BooleanField()

       index = djangosearch.ModelIndex(fields=['title', 'date'])

it raise an error:
 raise ImproperlyConfigured("You must define the SEARCH_ENGINE setting
before using the search framework.")
django.core.exceptions.ImproperlyConfigured: You must define the
SEARCH_ENGINE setting before using the search framework

i do not know how may i configure SEARCH_ENGINE. i am using mysql.

Original issue reported on code.google.com by praveen....@gmail.com on 16 Jan 2009 at 11:33