-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings_common.py
173 lines (134 loc) · 4.5 KB
/
settings_common.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
"""
Django settings for firetracker project.
For more information on this file, see
https://docs.djangoproject.com/en/1.7/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.7/ref/settings/
"""
import os
SITE_ROOT = os.path.realpath(os.path.dirname(__file__))
ADMINS = (
("Chris Keller", "[email protected]"),
)
SEND_BROKEN_LINK_EMAILS = True
MANAGERS = ADMINS
TIME_ZONE = "America/Los_Angeles"
LANGUAGE_CODE = "en-us"
SITE_ID = 1
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATICFILES_FINDERS = (
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
)
TEMPLATE_DIRS = (os.path.join(SITE_ROOT, "templates"),)
TEMPLATE_LOADERS = (
"django.template.loaders.filesystem.Loader",
"django.template.loaders.app_directories.Loader",
# "django.template.loaders.eggs.Loader",
)
TEMPLATE_CONTEXT_PROCESSORS = (
"django.core.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.static",
"django.core.context_processors.tz",
"django.contrib.messages.context_processors.messages",
"firetracker.custom_context.collect_messages",
)
MIDDLEWARE_CLASSES = (
"django.middleware.cache.UpdateCacheMiddleware",
"django.middleware.common.CommonMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.cache.FetchFromCacheMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"debug_toolbar.middleware.DebugToolbarMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
"django.contrib.redirects.middleware.RedirectFallbackMiddleware",
"django.contrib.flatpages.middleware.FlatpageFallbackMiddleware",
"calfire_tracker.middleware.XsSharing",
)
ROOT_URLCONF = "firetracker.urls"
INSTALLED_APPS = (
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.messages",
"django.contrib.staticfiles",
"django.contrib.flatpages",
"django.contrib.redirects",
"django.contrib.humanize",
# apps
"calfire_tracker",
# api & tools
"south",
"django_admin_bootstrapped",
"massadmin",
"tastypie",
"commander",
# admin
"django.contrib.admin",
"django.contrib.admindocs",
)
MESSAGE_STORAGE = "django.contrib.messages.storage.cookie.CookieStorage"
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
"version": 1,
"disable_existing_loggers": True,
"formatters": {
"verbose": {
"format" : "\033[1;36m%(levelname)s: %(filename)s (def %(funcName)s %(lineno)s): \033[1;37m %(message)s",
"datefmt" : "%d/%b/%Y %H:%M:%S"
},
"simple": {
"format": "\033[1;36m%(levelname)s: %(filename)s (def %(funcName)s %(lineno)s): \033[1;37m %(message)s"
},
},
"handlers": {
"console": {
"level": "DEBUG",
"class": "logging.StreamHandler",
"formatter": "simple"
},
"null": {
"level": "DEBUG",
"class":"django.utils.log.NullHandler",
},
#"file": {
#"level": "DEBUG",
#"class": "logging.FileHandler",
#"filename": "mysite.log",
#"formatter": "verbose"
#},
},
"loggers": {
"calfire_tracker": {
"handlers": ["console"],
"level": "DEBUG",
"propagate": False,
},
"django.db.backends": {
"handlers": ["null"],
"level": "DEBUG",
"propagate": False,
},
}
}
TEST_RUNNER = "django.test.simple.DjangoTestSuiteRunner"
# SOUTH_TESTS_MIGRATE = False
# SKIP_SOUTH_TESTS = True
AUTH_PROFILE_MODULE = "create_user.UserProfile"
# Honor the "X-Forwarded-Proto" header for request.is_secure()
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
XS_SHARING_ALLOWED_ORIGINS = "*"
XS_SHARING_ALLOWED_METHODS = "GET"