| 12345678910111213141516171819202122232425262728293031323334353637 |
- USE_LESS = False
- COMPRESS_ENABLED = False
-
- HAYSTACK_CONNECTIONS = {
- 'default': {
- 'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
- 'URL': u'http://127.0.0.1:8983/solr',
- 'INCLUDE_SPELLING': True
- },
- }
-
- CACHES = {
- 'default': {
- 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
- 'LOCATION': '127.0.0.1:11211',
- }
- }
-
- SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'
-
- TEMPLATE_LOADERS = (
- ('django.template.loaders.cached.Loader', (
- 'django.template.loaders.filesystem.Loader',
- 'django.template.loaders.app_directories.Loader',
- )),
- )
-
- DATABASES = {
- 'default': {
- 'ENGINE': 'django.contrib.gis.db.backends.postgis',
- 'NAME': 'oscar_demo',
- 'USER': '',
- 'PASSWORD': '',
- 'HOST': '127.0.0.1',
- 'PORT': '',
- },
- }
|