forked from bitsoffreedom/pim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_default.py
105 lines (86 loc) · 3.19 KB
/
settings_default.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
from os import path
# Set PROJECT_ROOT to the dir of the current file
PROJECT_ROOT = path.dirname(__file__)
DEBUG = True
TEMPLATE_DEBUG = DEBUG
# Safe sessions for a very limited time since they hold personal information.
SESSION_COOKIE_AGE = 10 * 60
STAFF_SESSION_COOKIE_AGE = 24 * 60**2
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
SESSION_COOKIE_SECURE = True
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = path.join(PROJECT_ROOT, 'static', 'media')
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = '/static/media/'
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
# trailing slash.
# Examples: "http://foo.com/media/", "/media/".
ADMIN_MEDIA_PREFIX = '/static/global/admin/'
# django-staticfiles
STATIC_ROOT = path.join(PROJECT_ROOT, 'static', 'global')
STATIC_URL = '/static/global/'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
# 'django.template.loaders.eggs.load_template_source',
)
MIDDLEWARE_CLASSES = [
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'pimbase.middleware.CookieExpireMiddelware',
]
# This is the default lis of context processors from Django
TEMPLATE_CONTEXT_PROCESSORS = [
"django.contrib.auth.context_processors.auth",
# "django.core.context_processors.debug", Not used
#"django.core.context_processors.i18n", Not used
"django.core.context_processors.media",
#"django.core.context_processors.static", Django 1.3
#"django.contrib.messages.context_processors.messages",
]
ROOT_URLCONF = 'urls'
TEMPLATE_DIRS = (
path.join(PROJECT_ROOT, 'templates')
)
# Log debug messages to standard output
if DEBUG:
import logging
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s %(levelname)-8s %(message)s',
datefmt='[%d/%b/%Y %H:%M:%S]')
DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS' : False,
}
# Consider ourself as internal IP
from socket import gethostname, gethostbyname
INTERNAL_IPS = ( '127.0.0.1',
gethostbyname(gethostname()),)
# Default to SQLite database for debugging
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = path.join(PROJECT_ROOT, 'database.sqlite')
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.admin',
'django.contrib.admindocs',
'django_extensions',
'indexer',
'paging',
'sentry',
'sentry.client',
'staticfiles',
'taggit',
'pim.pimbase'
]