Python3 compatible
[koed-quiz.git] / koedquiz / settings.py
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.
4 #
5 import os.path
6
7 PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
8
9 DEBUG = False
10 TEMPLATE_DEBUG = DEBUG
11
12 ADMINS = [
13     # ('Your Name', 'your_email@domain.com'),
14 ]
15
16 MANAGERS = ADMINS
17
18 DATABASES = {
19     'default': {
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.
26     }
27 }
28
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
35 # system time zone.
36 TIME_ZONE = None
37
38 # Language code for this installation. All choices can be found here:
39 # http://www.i18nguy.com/unicode/language-identifiers.html
40 LANGUAGE_CODE = 'pl'
41
42 SITE_ID = 1
43
44 # If you set this to False, Django will make some optimizations so as not
45 # to load the internationalization machinery.
46 USE_I18N = True
47
48 # If you set this to False, Django will not format dates, numbers and
49 # calendars according to the current locale
50 USE_L10N = True
51
52 # Absolute filesystem path to the directory that will hold user-uploaded files.
53 # Example: "/home/media/media.lawrence.com/media/"
54 MEDIA_ROOT = os.path.join(PROJECT_DIR, '../media')
55
56 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
57 # trailing slash.
58 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
59 MEDIA_URL = '/media/'
60
61 # Absolute path to the directory static files should be collected to.
62 # Don't put anything in this directory yourself; store your static files
63 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
64 # Example: "/home/media/media.lawrence.com/static/"
65 STATIC_ROOT = os.path.join(PROJECT_DIR, 'static/')
66
67 # URL prefix for static files.
68 # Example: "http://media.lawrence.com/static/"
69 STATIC_URL = '/static/'
70
71 # URL prefix for admin static files -- CSS, JavaScript and images.
72 # Make sure to use a trailing slash.
73 # Examples: "http://foo.com/static/admin/", "/static/admin/".
74 ADMIN_MEDIA_PREFIX = '/static/admin/'
75
76 # Additional locations of static files
77 STATICFILES_DIRS = (
78     # Put strings here, like "/home/html/static" or "C:/www/django/static".
79     # Always use forward slashes, even on Windows.
80     # Don't forget to use absolute paths, not relative paths.
81 )
82
83 # List of finder classes that know how to find static files in
84 # various locations.
85 STATICFILES_FINDERS = (
86     'django.contrib.staticfiles.finders.FileSystemFinder',
87     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
88 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
89 )
90
91 # List of callables that know how to import templates from various sources.
92 TEMPLATE_LOADERS = [
93     'django.template.loaders.filesystem.Loader',
94     'django.template.loaders.app_directories.Loader',
95 #     'django.template.loaders.eggs.Loader',
96 ]
97
98 MIDDLEWARE_CLASSES = [
99     'django.middleware.common.CommonMiddleware',
100     'django.contrib.sessions.middleware.SessionMiddleware',
101     'django.middleware.csrf.CsrfViewMiddleware',
102     'django.contrib.auth.middleware.AuthenticationMiddleware',
103     'django.contrib.messages.middleware.MessageMiddleware',
104 ]
105
106 ROOT_URLCONF = 'koedquiz.urls'
107
108 TEMPLATE_DIRS = [
109     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
110     # Always use forward slashes, even on Windows.
111     # Don't forget to use absolute paths, not relative paths.
112     os.path.join(PROJECT_DIR, 'templates'),
113 ]
114
115 INSTALLED_APPS = [
116     'django.contrib.auth',
117     'django.contrib.contenttypes',
118     'django.contrib.sessions',
119     'django.contrib.sites',
120     'django.contrib.messages',
121     'django.contrib.staticfiles',
122
123     'django.contrib.admin',
124     'django.contrib.admindocs',
125
126     'quiz',
127 ]
128
129 # A sample logging configuration. The only tangible logging
130 # performed by this configuration is to send an email to
131 # the site admins on every HTTP 500 error.
132 # See http://docs.djangoproject.com/en/dev/topics/logging for
133 # more details on how to customize your logging configuration.
134 LOGGING = {
135     'version': 1,
136     'disable_existing_loggers': False,
137     'handlers': {
138         'mail_admins': {
139             'level': 'ERROR',
140             'class': 'django.utils.log.AdminEmailHandler'
141         }
142     },
143     'loggers': {
144         'django.request': {
145             'handlers': ['mail_admins'],
146             'level': 'ERROR',
147             'propagate': True,
148         },
149     }
150 }
151
152 # Load localsettings, if they exist
153 try:
154     from .localsettings import *
155 except ImportError:
156     pass