mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-04-25 00:54:54 +00:00
17 lines
367 B
Python
Executable file
17 lines
367 B
Python
Executable file
# Copyright (C) 2009, 2010, 2011 David Sauve
|
|
# Copyright (C) 2009, 2010 Trapeze
|
|
|
|
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,
|
|
}
|
|
}
|