2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.default.settings
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Global settings file.
|
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Django settings for openslides project.
|
2012-02-15 12:04:11 +01:00
|
|
|
from openslides_settings import *
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2011-10-31 20:21:03 +01:00
|
|
|
DEBUG = True
|
2011-07-31 10:46:29 +02:00
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
|
|
|
TIME_ZONE = 'Europe/Berlin'
|
|
|
|
|
|
|
|
# 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
|