Advertisement
Guest User

Untitled

a guest
Mar 10th, 2012
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.48 KB | None | 0 0
  1. # Django settings for spottim project.
  2.  
  3. DEBUG = True
  4. TEMPLATE_DEBUG = DEBUG
  5.  
  6. ADMINS = (
  7. # ('Your Name', 'your_email@example.com'),
  8. )
  9.  
  10. MANAGERS = ADMINS
  11.  
  12. DATABASES = {
  13. 'default': {
  14. 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  15. 'NAME': 'spottim_db', # Or path to database file if using sqlite3.
  16. 'USER': '', # Not used with sqlite3.
  17. 'PASSWORD': '', # Not used with sqlite3.
  18. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
  19. 'PORT': '', # Set to empty string for default. Not used with sqlite3.
  20. }
  21. }
  22.  
  23. # Local time zone for this installation. Choices can be found here:
  24. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  25. # although not all choices may be available on all operating systems.
  26. # On Unix systems, a value of None will cause Django to use the same
  27. # timezone as the operating system.
  28. # If running in a Windows environment this must be set to the same as your
  29. # system time zone.
  30. TIME_ZONE = 'America/Chicago'
  31.  
  32. # Language code for this installation. All choices can be found here:
  33. # http://www.i18nguy.com/unicode/language-identifiers.html
  34. LANGUAGE_CODE = 'en-us'
  35.  
  36. SITE_ID = 1
  37.  
  38. # If you set this to False, Django will make some optimizations so as not
  39. # to load the internationalization machinery.
  40. USE_I18N = True
  41.  
  42. # If you set this to False, Django will not format dates, numbers and
  43. # calendars according to the current locale
  44. USE_L10N = True
  45.  
  46. # Absolute filesystem path to the directory that will hold user-uploaded files.
  47. # Example: "/home/media/media.lawrence.com/media/"
  48. MEDIA_ROOT = 'site_media'
  49.  
  50. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  51. # trailing slash.
  52. # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
  53. MEDIA_URL = '/site_media/'
  54.  
  55. # Absolute path to the directory static files should be collected to.
  56. # Don't put anything in this directory yourself; store your static files
  57. # in apps' "static/" subdirectories and in STATICFILES_DIRS.
  58. # Example: "/home/media/media.lawrence.com/static/"
  59. STATIC_ROOT = ''
  60.  
  61. # URL prefix for static files.
  62. # Example: "http://media.lawrence.com/static/"
  63. STATIC_URL = '/static/'
  64.  
  65. # URL prefix for admin static files -- CSS, JavaScript and images.
  66. # Make sure to use a trailing slash.
  67. # Examples: "http://foo.com/static/admin/", "/static/admin/".
  68. ADMIN_MEDIA_PREFIX = '/static/admin/'
  69.  
  70. # Additional locations of static files
  71. STATICFILES_DIRS = (
  72. # Put strings here, like "/home/html/static" or "C:/www/django/static".
  73. # Always use forward slashes, even on Windows.
  74. # Don't forget to use absolute paths, not relative paths.
  75. )
  76.  
  77. # List of finder classes that know how to find static files in
  78. # various locations.
  79. STATICFILES_FINDERS = (
  80. 'django.contrib.staticfiles.finders.FileSystemFinder',
  81. 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  82. # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
  83. )
  84.  
  85. # Make this unique, and don't share it with anybody.
  86. SECRET_KEY = 'dsfdsgdsgsdfsf'
  87.  
  88. # List of callables that know how to import templates from various sources.
  89. TEMPLATE_LOADERS = (
  90. 'django.template.loaders.filesystem.Loader',
  91. 'django.template.loaders.app_directories.Loader',
  92. # 'django.template.loaders.eggs.Loader',
  93. )
  94.  
  95. MIDDLEWARE_CLASSES = (
  96. 'django.middleware.common.CommonMiddleware',
  97. 'django.contrib.sessions.middleware.SessionMiddleware',
  98. 'django.middleware.csrf.CsrfViewMiddleware',
  99. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  100. 'django.contrib.messages.middleware.MessageMiddleware',
  101. )
  102.  
  103. TEMPLATE_CONTEXT_PROCESSORS = (
  104. # 'django.contrib.admin',
  105. 'django.core.context_processors.request',
  106. 'django.contrib.auth.context_processors.auth',
  107. 'django.core.context_processors.debug',
  108. 'django.core.context_processors.i18n',
  109. 'django.core.context_processors.media',
  110. # 'askbot.context.application_settings',
  111. 'django.contrib.messages.context_processors.messages',
  112. 'social_auth.context_processors.social_auth_by_type_backends',
  113. )
  114.  
  115. ROOT_URLCONF = 'spottim.urls'
  116.  
  117. import os
  118. ROOT_PATH = os.path.dirname(__file__)
  119. TEMPLATE_DIRS = (
  120. # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  121. # Always use forward slashes, even on Windows.
  122. # Don't forget to use absolute paths, not relative paths.
  123. os.path.join(ROOT_PATH,'templates'),
  124. )
  125.  
  126. INSTALLED_APPS = (
  127. 'django.contrib.auth',
  128. 'django.contrib.contenttypes',
  129. 'django.contrib.sessions',
  130. 'django.contrib.sites',
  131. 'django.contrib.messages',
  132. 'social_auth',
  133. 'website',
  134. 'django.contrib.staticfiles',
  135. # Uncomment the next line to enable the admin:
  136. # 'django.contrib.admin',
  137. # Uncomment the next line to enable admin documentation:
  138. # 'django.contrib.admindocs',
  139. )
  140.  
  141. AUTHENTICATION_BACKENDS = (
  142. 'social_auth.backends.twitter.TwitterBackend',
  143. 'django.contrib.auth.backends.ModelBackend',
  144. )
  145.  
  146.  
  147. # A sample logging configuration. The only tangible logging
  148. # performed by this configuration is to send an email to
  149. # the site admins on every HTTP 500 error.
  150. # See http://docs.djangoproject.com/en/dev/topics/logging for
  151. # more details on how to customize your logging configuration.
  152. LOGGING = {
  153. 'version': 1,
  154. 'disable_existing_loggers': False,
  155. 'formatters': {
  156. 'standard': {
  157. 'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s'
  158. },
  159. },
  160. 'handlers': {
  161. 'mail_admins': {
  162. 'level': 'ERROR',
  163. 'class': 'django.utils.log.AdminEmailHandler'
  164. },
  165. 'console': {
  166. 'level': 'DEBUG',
  167. 'class': 'logging.StreamHandler',
  168. },
  169. 'default': {
  170. 'level':'DEBUG',
  171. 'class':'logging.handlers.RotatingFileHandler',
  172. 'filename': 'logs/mylog.log',
  173. 'maxBytes': 1024*1024*5, # 5 MB
  174. 'backupCount': 5,
  175. 'formatter':'standard',
  176. },
  177. },
  178. 'loggers': {
  179. 'django.request': {
  180. 'handlers': ['mail_admins'],
  181. 'level': 'ERROR',
  182. 'propagate': True,
  183. },
  184. '':{
  185. 'handlers': ['default'] ,
  186. 'level': 'ERROR',
  187. 'propagate': True,
  188. },
  189. }
  190. }
  191.  
  192.  
  193. try:
  194. from social_settings import *
  195. except:
  196. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement