Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / crm / settings.py @ 1a305335

History | View | Annotate | Download (5.08 KB)

1 1a305335 officers
# Django settings for crm project.
2
3
DEBUG = True
4
TEMPLATE_DEBUG = DEBUG
5
6
ADMINS = (
7
    # ('Your Name', 'your_email@example.com'),
8
)
9
10
MANAGERS = ADMINS
11
12
DATABASES = {
13
    'default': {
14
        'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
15
        'NAME': '',                      # 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
# In a Windows environment this must be set to your system time zone.
27
TIME_ZONE = 'America/Chicago'
28
29
# Language code for this installation. All choices can be found here:
30
# http://www.i18nguy.com/unicode/language-identifiers.html
31
LANGUAGE_CODE = 'en-us'
32
33
SITE_ID = 1
34
35
# If you set this to False, Django will make some optimizations so as not
36
# to load the internationalization machinery.
37
USE_I18N = True
38
39
# If you set this to False, Django will not format dates, numbers and
40
# calendars according to the current locale.
41
USE_L10N = True
42
43
# If you set this to False, Django will not use timezone-aware datetimes.
44
USE_TZ = True
45
46
# Absolute filesystem path to the directory that will hold user-uploaded files.
47
# Example: "/home/media/media.lawrence.com/media/"
48
MEDIA_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/"
53
MEDIA_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/"
59
STATIC_ROOT = ''
60
61
# URL prefix for static files.
62
# Example: "http://media.lawrence.com/static/"
63
STATIC_URL = '/static/'
64
65
# Additional locations of static files
66
STATICFILES_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.
74
STATICFILES_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.
81
SECRET_KEY = '1!wcgl7t8m61!dpvyzlva(8o_ylx$+v(5g+devc^s4%a&0qfxa'
82
83
# List of callables that know how to import templates from various sources.
84
TEMPLATE_LOADERS = (
85
    'django.template.loaders.filesystem.Loader',
86
    'django.template.loaders.app_directories.Loader',
87
#     'django.template.loaders.eggs.Loader',
88
)
89
90
MIDDLEWARE_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
100
ROOT_URLCONF = 'crm.urls'
101
102
# Python dotted path to the WSGI application used by Django's runserver.
103
WSGI_APPLICATION = 'crm.wsgi.application'
104
105
TEMPLATE_DIRS = (
106
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
107
    # Always use forward slashes, even on Windows.
108
    # Don't forget to use absolute paths, not relative paths.
109
)
110
111
INSTALLED_APPS = (
112
    'django.contrib.auth',
113
    'django.contrib.contenttypes',
114
    'django.contrib.sessions',
115
    'django.contrib.sites',
116
    'django.contrib.messages',
117
    'django.contrib.staticfiles',
118
    # Uncomment the next line to enable the admin:
119
    # 'django.contrib.admin',
120
    # Uncomment the next line to enable admin documentation:
121
    # 'django.contrib.admindocs',
122
)
123
124
# A sample logging configuration. The only tangible logging
125
# performed by this configuration is to send an email to
126
# the site admins on every HTTP 500 error when DEBUG=False.
127
# See http://docs.djangoproject.com/en/dev/topics/logging for
128
# more details on how to customize your logging configuration.
129
LOGGING = {
130
    'version': 1,
131
    'disable_existing_loggers': False,
132
    'filters': {
133
        'require_debug_false': {
134
            '()': 'django.utils.log.RequireDebugFalse'
135
        }
136
    },
137
    'handlers': {
138
        'mail_admins': {
139
            'level': 'ERROR',
140
            'filters': ['require_debug_false'],
141
            'class': 'django.utils.log.AdminEmailHandler'
142
        }
143
    },
144
    'loggers': {
145
        'django.request': {
146
            'handlers': ['mail_admins'],
147
            'level': 'ERROR',
148
            'propagate': True,
149
        },
150
    }
151
}