bbf684f3521905c085185006f1307b51a22e9fce
[wolnelektury.git] / src / wolnelektury / settings / basic.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from os import path
5 from .paths import PROJECT_DIR
6
7 DEBUG = True
8
9 ADMINS = [
10     # ('Your Name', 'your_email@domain.com'),
11 ]
12
13 MANAGERS = ADMINS
14
15 CONTACT_EMAIL = 'fundacja@wolnelektury.pl'
16
17 CACHE_MIDDLEWARE_SECONDS = 24 * 60 * 60
18
19 DATABASES = {
20     'default': {
21         'ENGINE': 'django.db.backends.sqlite3',  # 'postgresql_psycopg2'
22         'NAME': path.join(PROJECT_DIR, 'dev.db'),
23         'USER': '',                      # Not used with sqlite3.
24         'PASSWORD': '',                  # Not used with sqlite3.
25         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
26     }
27 }
28
29 DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
30
31 SOLR_TEST = "http://localhost:8983/solr/wl_test/"
32 SOLR_STOPWORDS = "/path/to/solr/data/conf/lang/stopwords_pl.txt"
33
34 # Local time zone for this installation. Choices can be found here:
35 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
36 # although not all choices may be available on all operating systems.
37 # If running in a Windows environment this must be set to the same as your
38 # system time zone.
39 TIME_ZONE = 'Europe/Warsaw'
40 USE_TZ = True
41
42 SITE_ID = 1
43
44 TEMPLATES = [{
45     'BACKEND': 'django.template.backends.django.DjangoTemplates',
46     'APP_DIRS': True,
47     'OPTIONS': {
48         'context_processors': (
49             'django.contrib.auth.context_processors.auth',
50             'django.contrib.messages.context_processors.messages',
51             'django.template.context_processors.debug',
52             'django.template.context_processors.i18n',
53             'django.template.context_processors.media',
54             'django.template.context_processors.request',
55             'wolnelektury.context_processors.extra_settings',
56             'search.context_processors.search_form',
57         ),
58     },
59 }]
60
61 MIDDLEWARE = [
62     'debug_toolbar.middleware.DebugToolbarMiddleware',
63     'django.middleware.csrf.CsrfViewMiddleware',
64     'django.middleware.cache.UpdateCacheMiddleware',
65     'django.middleware.common.CommonMiddleware',
66     'django.contrib.sessions.middleware.SessionMiddleware',
67     'django.contrib.auth.middleware.AuthenticationMiddleware',
68     'django.contrib.admindocs.middleware.XViewMiddleware',
69     'fnp_django_pagination.middleware.PaginationMiddleware',
70     'django.middleware.locale.LocaleMiddleware',
71     'django.middleware.common.CommonMiddleware',
72     'django.contrib.messages.middleware.MessageMiddleware',
73     'fnpdjango.middleware.SetRemoteAddrFromXRealIP',
74     'django.middleware.cache.FetchFromCacheMiddleware',
75     'experiments.middleware.experiments_middleware',
76 ]
77
78 ROOT_URLCONF = 'wolnelektury.urls'
79
80 FILE_UPLOAD_PERMISSIONS = 0o640