Initial project django project comicsporn creation with django version
[webcomics.git] / settings.py
CommitLineData
428a4f11
JB
1# Django settings for comicsporn 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.', # Add 'postgresql_psycopg2', 'postgresql', '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# Hosts/domain names that are valid for this site; required if DEBUG is False
24# See https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#allowed-hosts
25ALLOWED_HOSTS = []
26
27# Local time zone for this installation. Choices can be found here:
28# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
29# although not all choices may be available on all operating systems.
30# On Unix systems, a value of None will cause Django to use the same
31# timezone as the operating system.
32# If running in a Windows environment this must be set to the same as your
33# system time zone.
34TIME_ZONE = 'America/Chicago'
35
36# Language code for this installation. All choices can be found here:
37# http://www.i18nguy.com/unicode/language-identifiers.html
38LANGUAGE_CODE = 'en-us'
39
40SITE_ID = 1
41
42# If you set this to False, Django will make some optimizations so as not
43# to load the internationalization machinery.
44USE_I18N = True
45
46# If you set this to False, Django will not format dates, numbers and
47# calendars according to the current locale
48USE_L10N = True
49
50# Absolute filesystem path to the directory that will hold user-uploaded files.
51# Example: "/home/media/media.lawrence.com/media/"
52MEDIA_ROOT = ''
53
54# URL that handles the media served from MEDIA_ROOT. Make sure to use a
55# trailing slash.
56# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
57MEDIA_URL = ''
58
59# Absolute path to the directory static files should be collected to.
60# Don't put anything in this directory yourself; store your static files
61# in apps' "static/" subdirectories and in STATICFILES_DIRS.
62# Example: "/home/media/media.lawrence.com/static/"
63STATIC_ROOT = ''
64
65# URL prefix for static files.
66# Example: "http://media.lawrence.com/static/"
67STATIC_URL = '/static/'
68
69# URL prefix for admin static files -- CSS, JavaScript and images.
70# Make sure to use a trailing slash.
71# Examples: "http://foo.com/static/admin/", "/static/admin/".
72ADMIN_MEDIA_PREFIX = '/static/admin/'
73
74# Additional locations of static files
75STATICFILES_DIRS = (
76 # Put strings here, like "/home/html/static" or "C:/www/django/static".
77 # Always use forward slashes, even on Windows.
78 # Don't forget to use absolute paths, not relative paths.
79)
80
81# List of finder classes that know how to find static files in
82# various locations.
83STATICFILES_FINDERS = (
84 'django.contrib.staticfiles.finders.FileSystemFinder',
85 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
86# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
87)
88
89# Make this unique, and don't share it with anybody.
90SECRET_KEY = '(%%e2kpghz5%wf(5%v(3bwb9dcmtak1r8ovvmbb_)9ib6n=)x%'
91
92# List of callables that know how to import templates from various sources.
93TEMPLATE_LOADERS = (
94 'django.template.loaders.filesystem.Loader',
95 'django.template.loaders.app_directories.Loader',
96# 'django.template.loaders.eggs.Loader',
97)
98
99MIDDLEWARE_CLASSES = (
100 'django.middleware.common.CommonMiddleware',
101 'django.contrib.sessions.middleware.SessionMiddleware',
102 'django.middleware.csrf.CsrfViewMiddleware',
103 'django.contrib.auth.middleware.AuthenticationMiddleware',
104 'django.contrib.messages.middleware.MessageMiddleware',
105)
106
107ROOT_URLCONF = 'comicsporn.urls'
108
109TEMPLATE_DIRS = (
110 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
111 # Always use forward slashes, even on Windows.
112 # Don't forget to use absolute paths, not relative paths.
113)
114
115INSTALLED_APPS = (
116 'django.contrib.auth',
117 'django.contrib.contenttypes',
118 'django.contrib.sessions',
119 'django.contrib.sites',
120 'django.contrib.messages',
121 'django.contrib.staticfiles',
122 # Uncomment the next line to enable the admin:
123 # 'django.contrib.admin',
124 # Uncomment the next line to enable admin documentation:
125 # 'django.contrib.admindocs',
126)
127
128# A sample logging configuration. The only tangible logging
129# performed by this configuration is to send an email to
130# the site admins on every HTTP 500 error.
131# See http://docs.djangoproject.com/en/dev/topics/logging for
132# more details on how to customize your logging configuration.
133LOGGING = {
134 'version': 1,
135 'disable_existing_loggers': False,
136 'handlers': {
137 'mail_admins': {
138 'level': 'ERROR',
139 'class': 'django.utils.log.AdminEmailHandler'
140 }
141 },
142 'loggers': {
143 'django.request': {
144 'handlers': ['mail_admins'],
145 'level': 'ERROR',
146 'propagate': True,
147 },
148 }
149}