mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-04-26 09:34:51 +00:00
14 lines
286 B
Python
Executable file
14 lines
286 B
Python
Executable file
import os
|
|
from settings import *
|
|
|
|
INSTALLED_APPS += [
|
|
'xapian_tests',
|
|
]
|
|
|
|
HAYSTACK_CONNECTIONS = {
|
|
'default': {
|
|
'ENGINE': 'haystack.backends.xapian_backend.XapianEngine',
|
|
'PATH': os.path.join('tmp', 'test_xapian_query'),
|
|
'INCLUDE_SPELLING': True,
|
|
}
|
|
}
|