Fixlet to the list of ignored files
[webcomics.git] / settings.py
1 # Django settings for django project.
2
3 DEBUG = True
4 TEMPLATE_DEBUG = DEBUG
5
6 ADMINS = (
7 ('Jerome BENOIT', 'jerome.benoit@grenouille.com'),
8 ('Toofik Medjamia', 'toofik@toofik.com'),
9 )
10
11 MANAGERS = ADMINS
12
13 DATABASES = {
14 'default': {
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.
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
26 ALLOWED_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.
35 TIME_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
41
42 # Language code for this installation. All choices can be found here:
43 # http://www.i18nguy.com/unicode/language-identifiers.html
44 LANGUAGE_CODE = 'en-us'
45
46 SITE_ID = 1
47
48 # If you set this to False, Django will make some optimizations so as not
49 # to load the internationalization machinery.
50 USE_I18N = True
51
52 # If you set this to False, Django will not format dates, numbers and
53 # calendars according to the current locale
54 USE_L10N = True
55
56 # Absolute filesystem path to the directory that will hold user-uploaded files.
57 # Example: "/home/media/media.lawrence.com/media/"
58 MEDIA_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/"
63 MEDIA_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/"
69 STATIC_ROOT = ''
70
71 # URL prefix for static files.
72 # Example: "http://media.lawrence.com/static/"
73 STATIC_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/".
78 ADMIN_MEDIA_PREFIX = '/static/admin/'
79
80 # Additional locations of static files
81 STATICFILES_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.
89 STATICFILES_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.
96 SECRET_KEY = '(%%e2kpghz5%wf(5%v(3bwb9dcmtak1r8ovvmbb_)9ib6n=)x%'
97
98 # List of callables that know how to import templates from various sources.
99 TEMPLATE_LOADERS = (
100 'django.template.loaders.filesystem.Loader',
101 'django.template.loaders.app_directories.Loader',
102 # 'django.template.loaders.eggs.Loader',
103 )
104
105 MIDDLEWARE_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
113 ROOT_URLCONF = 'urls'
114
115 TEMPLATE_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
121 INSTALLED_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:
129 'django.contrib.admin',
130 # Uncomment the next line to enable admin documentation:
131 'django.contrib.admindocs',
132 'comicsporn',
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.
140 LOGGING = {
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 }