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