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