mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-04-16 12:51:01 +00:00
12 lines
279 B
Python
Executable file
12 lines
279 B
Python
Executable file
# Copyright (C) 2009-2010 David Sauve, Trapeze. All rights reserved.
|
|
|
|
import os
|
|
from settings import *
|
|
|
|
INSTALLED_APPS += [
|
|
'xapian_tests',
|
|
]
|
|
|
|
HAYSTACK_SEARCH_ENGINE = 'xapian'
|
|
HAYSTACK_XAPIAN_PATH = os.path.join('tmp', 'test_xapian_query')
|
|
HAYSTACK_INCLUDE_SPELLING = True
|