|
@ -63,11 +63,6 @@ MUMBLE_DJANGO_ROOT = None ## |
|
|
################################################################# |
|
|
################################################################# |
|
|
################################################################# |
|
|
################################################################# |
|
|
|
|
|
|
|
|
# Who will receive emails on errors? |
|
|
|
|
|
ADMINS = ( |
|
|
|
|
|
# ('Your Name', 'your_email@domain.com'), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
# Show debug information on errors? |
|
|
# Show debug information on errors? |
|
|
# If you want to file a bug report, please enable this option. |
|
|
# If you want to file a bug report, please enable this option. |
|
|
DEBUG = True |
|
|
DEBUG = True |
|
@ -151,6 +146,8 @@ from os.path import join, dirname, abspath, exists |
|
|
if not MUMBLE_DJANGO_ROOT or not exists( MUMBLE_DJANGO_ROOT ): |
|
|
if not MUMBLE_DJANGO_ROOT or not exists( MUMBLE_DJANGO_ROOT ): |
|
|
MUMBLE_DJANGO_ROOT = dirname(dirname(abspath(__file__))) |
|
|
MUMBLE_DJANGO_ROOT = dirname(dirname(abspath(__file__))) |
|
|
|
|
|
|
|
|
|
|
|
BASE_DIR = MUMBLE_DJANGO_ROOT |
|
|
|
|
|
|
|
|
# Default mumble port. If your server runs under this port, it will not be |
|
|
# Default mumble port. If your server runs under this port, it will not be |
|
|
# included in the links in the Channel Viewer. |
|
|
# included in the links in the Channel Viewer. |
|
|
MUMBLE_DEFAULT_PORT = 64738 |
|
|
MUMBLE_DEFAULT_PORT = 64738 |
|
@ -182,8 +179,6 @@ DATABASES = { |
|
|
|
|
|
|
|
|
TEMPLATE_DEBUG = DEBUG |
|
|
TEMPLATE_DEBUG = DEBUG |
|
|
|
|
|
|
|
|
MANAGERS = ADMINS |
|
|
|
|
|
|
|
|
|
|
|
SITE_ID = 1 |
|
|
SITE_ID = 1 |
|
|
|
|
|
|
|
|
# If you set this to False, Django will make some optimizations so as not |
|
|
# If you set this to False, Django will make some optimizations so as not |
|
@ -224,13 +219,6 @@ except NameError: |
|
|
Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE) |
|
|
Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# List of callables that know how to import templates from various sources. |
|
|
|
|
|
TEMPLATE_LOADERS = ( |
|
|
|
|
|
'django.template.loaders.filesystem.Loader', |
|
|
|
|
|
'django.template.loaders.app_directories.Loader', |
|
|
|
|
|
# 'django.template.loaders.eggs.Loader', |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
MIDDLEWARE_CLASSES = ( |
|
|
MIDDLEWARE_CLASSES = ( |
|
|
'django.middleware.common.CommonMiddleware', |
|
|
'django.middleware.common.CommonMiddleware', |
|
|
'django.contrib.sessions.middleware.SessionMiddleware', |
|
|
'django.contrib.sessions.middleware.SessionMiddleware', |
|
|