Guest User

Untitled

a guest
Mar 17th, 2018
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. """
  2. Copyright (C) Daniel Loewenherz, 2009. All Rights Reserved.
  3. """
  4.  
  5. gettext = lambda s: s
  6.  
  7. DEBUG = True
  8. TEMPLATE_DEBUG = DEBUG
  9.  
  10. ADMINS = (
  11. ('Dan Loewenherz', 'dloewenherz@gmail.com'),
  12. )
  13.  
  14. MANAGERS = ADMINS
  15.  
  16. DATABASE_ENGINE = 'mysql'
  17. DATABASE_NAME = 'linonia'
  18. DATABASE_USER = 'XXXXX'
  19. DATABASE_PASSWORD = 'XXXXX'
  20. DATABASE_HOST = ''
  21. DATABASE_PORT = ''
  22.  
  23. AUTH_PROFILE_MODULE = 'lin.UserProfile'
  24.  
  25. TIME_ZONE = 'America/Chicago'
  26.  
  27. LANGUAGE_CODE = 'en-us'
  28.  
  29. SITE_ID = 1
  30.  
  31. USE_I18N = True
  32.  
  33. MEDIA_ROOT = 'media/'
  34.  
  35. MEDIA_URL = '/static/'
  36.  
  37. ADMIN_MEDIA_PREFIX = '/admin-media/'
  38.  
  39. SECRET_KEY = '#!4oni0ebc&%@lwn^j@oz+weuq%f(6yv7$dl@r_378ippjlanw'
  40.  
  41. TEMPLATE_LOADERS = (
  42. 'django.template.loaders.filesystem.load_template_source',
  43. 'django.template.loaders.app_directories.load_template_source',
  44. 'django.template.loaders.eggs.load_template_source',
  45. )
  46.  
  47. MIDDLEWARE_CLASSES = (
  48. 'django.contrib.sessions.middleware.SessionMiddleware',
  49. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  50. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  51. 'django.middleware.common.CommonMiddleware',
  52. 'django.middleware.locale.LocaleMiddleware',
  53. )
  54.  
  55. ROOT_URLCONF = 'linonia.urls'
  56.  
  57. TEMPLATE_DIRS = (
  58. 'templates',
  59. )
  60.  
  61. INSTALLED_APPS = (
  62. 'django.contrib.auth',
  63. 'django.contrib.contenttypes',
  64. 'django.contrib.sessions',
  65. 'django.contrib.admin',
  66. 'linonia.lin',
  67. )
  68.  
  69. TEMPLATE_CONTEXT_PROCESSORS = (
  70. "django.core.context_processors.auth",
  71. "django.core.context_processors.i18n",
  72. "django.core.context_processors.request",
  73. "django.core.context_processors.media",
  74. )
  75.  
  76. LANGUAGE_CODE = 'en'
Add Comment
Please, Sign In to add comment