1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from .paths import PROJECT_DIR
9 MAINTENANCE_MODE = False
12 # ('Your Name', 'your_email@domain.com'),
19 'ENGINE': 'django.db.backends.sqlite3', # 'postgresql_psycopg2'
20 'NAME': path.join(PROJECT_DIR, 'dev.db'),
21 'USER': '', # Not used with sqlite3.
22 'PASSWORD': '', # Not used with sqlite3.
23 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
27 SOLR = "http://localhost:8983/solr/wl/"
28 SOLR_TEST = "http://localhost:8983/solr/wl_test/"
30 # Local time zone for this installation. Choices can be found here:
31 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
32 # although not all choices may be available on all operating systems.
33 # If running in a Windows environment this must be set to the same as your
35 TIME_ZONE = 'Europe/Warsaw'
41 'BACKEND': 'django.template.backends.django.DjangoTemplates',
44 ('django.template.loaders.cached.Loader', (
45 'django.template.loaders.filesystem.Loader',
46 'django.template.loaders.app_directories.Loader',
49 'context_processors': (
50 'django.contrib.auth.context_processors.auth',
51 'django.core.context_processors.debug',
52 'django.core.context_processors.i18n',
53 'django.core.context_processors.media',
54 'django.core.context_processors.request',
55 'wolnelektury.context_processors.extra_settings',
56 'search.context_processors.search_form',