root/settings.py

Revision 1, 5.1 kB (checked in by georgescarlett, 11 months ago)

initial import

Line 
1# Django settings for cricket project.
2
3DEBUG = True
4TEMPLATE_DEBUG = DEBUG
5
6ADMINS = (
7    # ('Your Name', 'your_email@example.com'),
8)
9
10MANAGERS = ADMINS
11
12DATABASES = {
13    'default': {
14        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
15        'NAME': './CRICKETDB',                      # Or path to database file if using sqlite3.
16        'USER': '',                      # Not used with sqlite3.
17        'PASSWORD': '',                  # Not used with sqlite3.
18        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
19        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
20    }
21}
22
23# Local time zone for this installation. Choices can be found here:
24# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
25# although not all choices may be available on all operating systems.
26# On Unix systems, a value of None will cause Django to use the same
27# timezone as the operating system.
28# If running in a Windows environment this must be set to the same as your
29# system time zone.
30TIME_ZONE = 'Europe/London'
31
32# Language code for this installation. All choices can be found here:
33# http://www.i18nguy.com/unicode/language-identifiers.html
34LANGUAGE_CODE = 'en-us'
35
36SITE_ID = 1
37
38# If you set this to False, Django will make some optimizations so as not
39# to load the internationalization machinery.
40USE_I18N = True
41
42# If you set this to False, Django will not format dates, numbers and
43# calendars according to the current locale
44USE_L10N = True
45
46# Absolute filesystem path to the directory that will hold user-uploaded files.
47# Example: "/home/media/media.lawrence.com/media/"
48MEDIA_ROOT = ''
49
50# URL that handles the media served from MEDIA_ROOT. Make sure to use a
51# trailing slash.
52# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
53MEDIA_URL = ''
54
55# Absolute path to the directory static files should be collected to.
56# Don't put anything in this directory yourself; store your static files
57# in apps' "static/" subdirectories and in STATICFILES_DIRS.
58# Example: "/home/media/media.lawrence.com/static/"
59STATIC_ROOT = ''
60
61# URL prefix for static files.
62# Example: "http://media.lawrence.com/static/"
63STATIC_URL = '/static/'
64
65# Additional locations of static files
66STATICFILES_DIRS = (
67    # Put strings here, like "/home/html/static" or "C:/www/django/static".
68    # Always use forward slashes, even on Windows.
69    # Don't forget to use absolute paths, not relative paths.
70)
71
72# List of finder classes that know how to find static files in
73# various locations.
74STATICFILES_FINDERS = (
75    'django.contrib.staticfiles.finders.FileSystemFinder',
76    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
77#    'django.contrib.staticfiles.finders.DefaultStorageFinder',
78)
79
80# Make this unique, and don't share it with anybody.
81SECRET_KEY = 'adithairudht986y9q459ar8ne(**(^)$x0yn'
82
83# List of callables that know how to import templates from various sources.
84TEMPLATE_LOADERS = (
85    'django.template.loaders.filesystem.Loader',
86    'django.template.loaders.app_directories.Loader',
87#     'django.template.loaders.eggs.Loader',
88)
89
90MIDDLEWARE_CLASSES = (
91    'django.middleware.common.CommonMiddleware',
92    'django.contrib.sessions.middleware.SessionMiddleware',
93    'django.middleware.csrf.CsrfViewMiddleware',
94    'django.contrib.auth.middleware.AuthenticationMiddleware',
95    'django.contrib.messages.middleware.MessageMiddleware',
96    # Uncomment the next line for simple clickjacking protection:
97    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
98)
99
100ROOT_URLCONF = 'cricket.urls'
101
102TEMPLATE_DIRS = (
103    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
104    # Always use forward slashes, even on Windows.
105    # Don't forget to use absolute paths, not relative paths.
106)
107
108INSTALLED_APPS = (
109    'django.contrib.auth',
110    'django.contrib.contenttypes',
111    'django.contrib.sessions',
112    'django.contrib.sites',
113    'django.contrib.messages',
114    'django.contrib.staticfiles',
115    # Uncomment the next line to enable the admin:
116    'django.contrib.admin',
117    # Uncomment the next line to enable admin documentation:
118    'django.contrib.admindocs',
119    'cricket.teams',
120)
121
122# A sample logging configuration. The only tangible logging
123# performed by this configuration is to send an email to
124# the site admins on every HTTP 500 error when DEBUG=False.
125# See http://docs.djangoproject.com/en/dev/topics/logging for
126# more details on how to customize your logging configuration.
127LOGGING = {
128    'version': 1,
129    'disable_existing_loggers': False,
130    'filters': {
131        'require_debug_false': {
132            '()': 'django.utils.log.CallbackFilter',
133            'callback': lambda r: not DEBUG
134        }
135    },
136    'handlers': {
137        'mail_admins': {
138            'level': 'ERROR',
139            'filters': ['require_debug_false'],
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}
Note: See TracBrowser for help on using the browser.