Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / crm / settings.py @ 988e217a

History | View | Annotate | Download (5.13 KB)

1 1a305335 officers
# Django settings for crm project.
2
3
DEBUG = True
4
TEMPLATE_DEBUG = DEBUG
5
6
ADMINS = (
7 988e217a Julian Binder
    ('Julian Binder', 'jabinder@andrew.cmu.edu'),
8 1a305335 officers
)
9
10
MANAGERS = ADMINS
11
12
DATABASES = {
13
    'default': {
14 d1a4905f officers
        'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
15
        'NAME': 'crm',                      # Or path to database file if using sqlite3.
16
        'USER': 'crmuser',                      # Not used with sqlite3.
17
        'PASSWORD': 'baseball',                  # Not used with sqlite3.
18 1a305335 officers
        '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 d1a4905f officers
TIME_ZONE = 'America/New_York'
28 1a305335 officers
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 d1a4905f officers
    'south',
119 988e217a Julian Binder
    'robocrm',
120 1a305335 officers
    # Uncomment the next line to enable the admin:
121
    # 'django.contrib.admin',
122
    # Uncomment the next line to enable admin documentation:
123
    # 'django.contrib.admindocs',
124
)
125
126
# A sample logging configuration. The only tangible logging
127
# performed by this configuration is to send an email to
128
# the site admins on every HTTP 500 error when DEBUG=False.
129
# See http://docs.djangoproject.com/en/dev/topics/logging for
130
# more details on how to customize your logging configuration.
131
LOGGING = {
132
    'version': 1,
133
    'disable_existing_loggers': False,
134
    'filters': {
135
        'require_debug_false': {
136
            '()': 'django.utils.log.RequireDebugFalse'
137
        }
138
    },
139
    'handlers': {
140
        'mail_admins': {
141
            'level': 'ERROR',
142
            'filters': ['require_debug_false'],
143
            'class': 'django.utils.log.AdminEmailHandler'
144
        }
145
    },
146
    'loggers': {
147
        'django.request': {
148
            'handlers': ['mail_admins'],
149
            'level': 'ERROR',
150
            'propagate': True,
151
        },
152
    }
153
}