some moving works
[audio.git] / audiobooks / settings.py
1 # Django settings for audiobooks project.
2 # -*- coding: utf-8 -*-
3
4 import os
5 import sys
6 PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
7 sys.path.insert(0, os.path.join(PROJECT_ROOT, "../apps"))
8
9
10
11 DEBUG = False
12 TEMPLATE_DEBUG = DEBUG
13
14 ADMINS = (
15     # ('Your Name', 'your_email@example.com'),
16 )
17
18 MANAGERS = ADMINS
19
20 DATABASES = {
21     'default': {
22         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
23         'NAME': os.path.join(PROJECT_ROOT, 'dev.sqlite'),                      # Or path to database file if using sqlite3.
24         'USER': '',                      # Not used with sqlite3.
25         'PASSWORD': '',                  # Not used with sqlite3.
26         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
27         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
28     }
29 }
30
31 # Local time zone for this installation. Choices can be found here:
32 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
33 # although not all choices may be available on all operating systems.
34 # On Unix systems, a value of None will cause Django to use the same
35 # timezone as the operating system.
36 # If running in a Windows environment this must be set to the same as your
37 # system time zone.
38 TIME_ZONE = 'Europe/Warsaw'
39
40 # Language code for this installation. All choices can be found here:
41 # http://www.i18nguy.com/unicode/language-identifiers.html
42 LANGUAGE_CODE = 'pl'
43
44 SITE_ID = 1
45
46 # If you set this to False, Django will make some optimizations so as not
47 # to load the internationalization machinery.
48 USE_I18N = True
49
50 # If you set this to False, Django will not format dates, numbers and
51 # calendars according to the current locale
52 USE_L10N = True
53
54 # Absolute filesystem path to the directory that will hold user-uploaded files.
55 # Example: "/home/media/media.lawrence.com/media/"
56 MEDIA_ROOT = os.path.join(PROJECT_ROOT, '../media')
57
58 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
59 # trailing slash.
60 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
61 MEDIA_URL = ''
62
63 # Absolute path to the directory static files should be collected to.
64 # Don't put anything in this directory yourself; store your static files
65 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
66 # Example: "/home/media/media.lawrence.com/static/"
67 STATIC_ROOT = ''
68
69 # URL prefix for static files.
70 # Example: "http://media.lawrence.com/static/"
71 STATIC_URL = '/static/'
72
73 # URL prefix for admin static files -- CSS, JavaScript and images.
74 # Make sure to use a trailing slash.
75 # Examples: "http://foo.com/static/admin/", "/static/admin/".
76 ADMIN_MEDIA_PREFIX = '/static/admin/'
77
78 # Additional locations of static files
79 STATICFILES_DIRS = (
80     # Put strings here, like "/home/html/static" or "C:/www/django/static".
81     # Always use forward slashes, even on Windows.
82     # Don't forget to use absolute paths, not relative paths.
83 )
84
85 # List of finder classes that know how to find static files in
86 # various locations.
87 STATICFILES_FINDERS = (
88     'django.contrib.staticfiles.finders.FileSystemFinder',
89     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
90 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
91 )
92
93 # Make this unique, and don't share it with anybody.
94 SECRET_KEY = '8ehk^-+pr(o)k6lh_gl9+ks6gkd9u#fka7fv%ikpk(c%llqa6%'
95
96 # List of callables that know how to import templates from various sources.
97 TEMPLATE_LOADERS = (
98     'django.template.loaders.filesystem.Loader',
99     'django.template.loaders.app_directories.Loader',
100 #     'django.template.loaders.eggs.Loader',
101 )
102
103 MIDDLEWARE_CLASSES = (
104     'django.middleware.common.CommonMiddleware',
105     'django.contrib.sessions.middleware.SessionMiddleware',
106     'django.middleware.csrf.CsrfViewMiddleware',
107     'django.contrib.auth.middleware.AuthenticationMiddleware',
108     'django.contrib.messages.middleware.MessageMiddleware',
109 )
110
111 ROOT_URLCONF = 'audiobooks.urls'
112
113 TEMPLATE_DIRS = (
114     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
115     # Always use forward slashes, even on Windows.
116     # Don't forget to use absolute paths, not relative paths.
117 )
118
119 INSTALLED_APPS = (
120     'django.contrib.auth',
121     'django.contrib.contenttypes',
122     'django.contrib.sessions',
123     'django.contrib.sites',
124     'django.contrib.messages',
125     'django.contrib.staticfiles',
126     # Uncomment the next line to enable the admin:
127     'django.contrib.admin',
128     # Uncomment the next line to enable admin documentation:
129     # 'django.contrib.admindocs',
130
131     'south',
132     'archive',
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 }
157
158
159
160 try:
161     from localsettings import *
162 except:
163     pass