Requires setting HAYSTACK_WHOOSH_PATH to the place on your filesystem where the Whoosh index should be located. Can anyone explain where exactly this path is pointing? I mean what should i give in this path?
Asked
Active
Viewed 580 times
2 Answers
3
Any directory you wish. You can use this configuration:
import os, sys
PROJECT_ROOT = os.path.dirname(__file__)
HAYSTACK_WHOOSH_PATH = os.path.join(PROJECT_ROOT, 'search_index')

Yasel
- 2,920
- 4
- 40
- 48