Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
5.1 KiB

  1. # -*- coding: utf-8 -*-
  2. # Django settings for mumble_django project.
  3. """
  4. * Copyright (C) 2009, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
  5. *
  6. * Mumble-Django is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This package is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. """
  16. #################################################################
  17. #################################################################
  18. ## ##
  19. ## The only setting you should alter is this path. ##
  20. ## Mumble-Django will try to auto-detect this value if it ##
  21. ## isn't set, which is the default. However, if this should ##
  22. ## not work as expected, set this to the path where you ##
  23. ## extracted Mumble-Django. ##
  24. ## ##
  25. ## Default: Auto Detection ##
  26. MUMBLE_DJANGO_ROOT = None; ##
  27. ## Examples: ##
  28. #MUMBLE_DJANGO_ROOT = '/home/mistagee/mumble-django'; ##
  29. #MUMBLE_DJANGO_ROOT = 'c:/web/mumble-django'; ##
  30. ## ##
  31. ## For a basic installation, this is all you need to edit in ##
  32. ## this file, the rest will be handled automatically! ##
  33. ## ##
  34. #################################################################
  35. ## ##
  36. ## DO NOT CHANGE ANYTHING ELSE IN THIS FILE UNLESS YOU KNOW ##
  37. ## WHAT YOU ARE DOING! ##
  38. ## ##
  39. #################################################################
  40. #################################################################
  41. # Default email address to send mails from.
  42. DEFAULT_FROM_EMAIL = "webmaster@localhost"
  43. ACCOUNT_ACTIVATION_DAYS = 30
  44. from os.path import join, dirname, abspath, exists
  45. if not MUMBLE_DJANGO_ROOT or not exists( MUMBLE_DJANGO_ROOT ):
  46. MUMBLE_DJANGO_ROOT = dirname(dirname(abspath(__file__)));
  47. DEBUG = True
  48. TEMPLATE_DEBUG = DEBUG
  49. ADMINS = (
  50. # ('Your Name', 'your_email@domain.com'),
  51. )
  52. MANAGERS = ADMINS
  53. DATABASE_ENGINE = 'sqlite3'
  54. DATABASE_NAME = join( MUMBLE_DJANGO_ROOT, 'mumble-django.db3' )
  55. DATABASE_USER = ''
  56. DATABASE_PASSWORD = ''
  57. DATABASE_HOST = ''
  58. DATABASE_PORT = ''
  59. # Local time zone for this installation. Choices can be found here:
  60. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  61. # although not all choices may be available on all operating systems.
  62. # If running in a Windows environment this must be set to the same as your
  63. # system time zone.
  64. TIME_ZONE = 'Europe/Berlin'
  65. # Language code for this installation. All choices can be found here:
  66. # http://www.i18nguy.com/unicode/language-identifiers.html
  67. LANGUAGE_CODE = 'en-us'
  68. SITE_ID = 1
  69. # If you set this to False, Django will make some optimizations so as not
  70. # to load the internationalization machinery.
  71. USE_I18N = True
  72. # Absolute path to the directory that holds media.
  73. # Example: "/home/media/media.lawrence.com/"
  74. MEDIA_ROOT = join( MUMBLE_DJANGO_ROOT, 'htdocs' )
  75. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  76. # trailing slash if there is a path component (optional in other cases).
  77. # Examples: "http://media.lawrence.com", "http://example.com/media/"
  78. MEDIA_URL = ''
  79. # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
  80. # trailing slash.
  81. # Examples: "http://foo.com/media/", "/media/".
  82. ADMIN_MEDIA_PREFIX = '/media/'
  83. # Make this unique, and don't share it with anybody.
  84. SECRET_KEY = 'u-mp185msk#z4%s(do2^5405)y5d!9adbn92)apu_p^qvqh10v'
  85. # List of callables that know how to import templates from various sources.
  86. TEMPLATE_LOADERS = (
  87. 'django.template.loaders.filesystem.load_template_source',
  88. 'django.template.loaders.app_directories.load_template_source',
  89. # 'django.template.loaders.eggs.load_template_source',
  90. )
  91. MIDDLEWARE_CLASSES = (
  92. 'django.middleware.common.CommonMiddleware',
  93. 'django.contrib.sessions.middleware.SessionMiddleware',
  94. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  95. )
  96. ROOT_URLCONF = 'pyweb.urls'
  97. TEMPLATE_DIRS = (
  98. # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  99. # Always use forward slashes, even on Windows.
  100. # Don't forget to use absolute paths, not relative paths.
  101. join( MUMBLE_DJANGO_ROOT, 'template' ),
  102. )
  103. INSTALLED_APPS = (
  104. 'django.contrib.auth',
  105. 'django.contrib.admin',
  106. 'django.contrib.contenttypes',
  107. 'django.contrib.sessions',
  108. 'django.contrib.sites',
  109. 'registration',
  110. 'mumble',
  111. )