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