1 # -*- coding: utf-8 -*-
2 # This file is part of KOED-Quiz, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
7 PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
10 TEMPLATE_DEBUG = DEBUG
13 # ('Your Name', 'your_email@domain.com'),
20 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
21 'NAME': os.path.join(PROJECT_DIR, 'dev.db'), # Or path to database file if using sqlite3.
22 'USER': '', # Not used with sqlite3.
23 'PASSWORD': '', # Not used with sqlite3.
24 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
25 'PORT': '', # Set to empty string for default. Not used with sqlite3.
29 # Local time zone for this installation. Choices can be found here:
30 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
31 # although not all choices may be available on all operating systems.
32 # On Unix systems, a value of None will cause Django to use the same
33 # timezone as the operating system.
34 # If running in a Windows environment this must be set to the same as your
38 # Language code for this installation. All choices can be found here:
39 # http://www.i18nguy.com/unicode/language-identifiers.html
42 # If you set this to False, Django will make some optimizations so as not
43 # to load the internationalization machinery.
46 # If you set this to False, Django will not format dates, numbers and
47 # calendars according to the current locale
50 # Absolute filesystem path to the directory that will hold user-uploaded files.
51 # Example: "/home/media/media.lawrence.com/media/"
52 MEDIA_ROOT = os.path.join(PROJECT_DIR, '../media')
54 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
56 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
59 # Absolute path to the directory static files should be collected to.
60 # Don't put anything in this directory yourself; store your static files
61 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
62 # Example: "/home/media/media.lawrence.com/static/"
63 STATIC_ROOT = os.path.join(PROJECT_DIR, 'static/')
65 # URL prefix for static files.
66 # Example: "http://media.lawrence.com/static/"
67 STATIC_URL = '/static/'
69 # URL prefix for admin static files -- CSS, JavaScript and images.
70 # Make sure to use a trailing slash.
71 # Examples: "http://foo.com/static/admin/", "/static/admin/".
72 ADMIN_MEDIA_PREFIX = '/static/admin/'
74 # Additional locations of static files
76 # Put strings here, like "/home/html/static" or "C:/www/django/static".
77 # Always use forward slashes, even on Windows.
78 # Don't forget to use absolute paths, not relative paths.
81 # List of finder classes that know how to find static files in
83 STATICFILES_FINDERS = (
84 'django.contrib.staticfiles.finders.FileSystemFinder',
85 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
86 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
89 # List of callables that know how to import templates from various sources.
91 'django.template.loaders.filesystem.Loader',
92 'django.template.loaders.app_directories.Loader',
93 # 'django.template.loaders.eggs.Loader',
96 TEMPLATE_CONTEXT_PROCESSORS = (
97 "django.contrib.auth.context_processors.auth",
98 "django.core.context_processors.debug",
99 "django.core.context_processors.i18n",
100 "django.core.context_processors.media",
101 "django.core.context_processors.static",
102 "django.core.context_processors.tz",
103 "django.contrib.messages.context_processors.messages",
104 "django.core.context_processors.request",
107 MIDDLEWARE_CLASSES = [
108 'django.middleware.common.CommonMiddleware',
109 'django.contrib.sessions.middleware.SessionMiddleware',
110 'django.middleware.csrf.CsrfViewMiddleware',
111 'django.contrib.auth.middleware.AuthenticationMiddleware',
112 'django.contrib.messages.middleware.MessageMiddleware',
113 'quiz.middleware.CurrentQuizMiddleware',
116 ROOT_URLCONF = 'koedquiz.urls'
119 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
120 # Always use forward slashes, even on Windows.
121 # Don't forget to use absolute paths, not relative paths.
122 os.path.join(PROJECT_DIR, 'templates'),
126 'django.contrib.auth',
127 'django.contrib.contenttypes',
128 'django.contrib.sessions',
129 'django.contrib.sites',
130 'django.contrib.messages',
131 'django.contrib.staticfiles',
133 'django.contrib.admin',
134 'django.contrib.admindocs',
139 # A sample logging configuration. The only tangible logging
140 # performed by this configuration is to send an email to
141 # the site admins on every HTTP 500 error.
142 # See http://docs.djangoproject.com/en/dev/topics/logging for
143 # more details on how to customize your logging configuration.
146 'disable_existing_loggers': False,
150 'class': 'django.utils.log.AdminEmailHandler'
155 'handlers': ['mail_admins'],
162 # Load localsettings, if they exist
164 from .localsettings import *