2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.default.settings
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-04-29 21:17:15 +02:00
|
|
|
Global Django settings file for OpenSlides.
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-04-25 22:29:19 +02:00
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
2011-07-31 10:46:29 +02:00
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
2012-02-15 12:04:11 +01:00
|
|
|
from openslides_settings import *
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-04-29 21:17:15 +02:00
|
|
|
# Use 'DEBUG = True' to get more details for server errors (Default for relaeses: 'False')
|
2011-10-31 20:21:03 +01:00
|
|
|
DEBUG = True
|
2011-07-31 10:46:29 +02:00
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
2012-05-23 14:29:11 +02:00
|
|
|
# Set timezone
|
|
|
|
TIME_ZONE = 'Europe/Berlin'
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
# Make this unique, and don't share it with anybody.
|
|
|
|
SECRET_KEY = '=(v@$58k$fcl4y8t2#q15y-9p=^45y&!$!ap$7xo6ub$akg-!5'
|
2012-04-13 14:05:51 +02:00
|
|
|
|
2012-04-29 19:33:57 +02:00
|
|
|
# Add OpenSlides plugins to this list (see example entry in comment)
|
2012-04-13 14:05:51 +02:00
|
|
|
INSTALLED_PLUGINS = (
|
2012-04-29 19:33:57 +02:00
|
|
|
# 'pluginname',
|
2012-04-13 14:05:51 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
INSTALLED_APPS += INSTALLED_PLUGINS
|