Advertisement
Guest User

Untitled

a guest
May 8th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.11 KB | None | 0 0
  1. # Django settings for dip 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.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  15.         'NAME': 'mydb',                      # Or path to database file if using sqlite3.
  16.         'USER': 'postgres',                      # 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 = r'E:/dip/static/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 = '/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 = r'E:/dip/static/'
  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.     r'E:/dip/static/img',
  73.     r'E:/dip/static/js',
  74.     r'E:/dip/static/css',
  75.     # Put strings here, like "/home/html/static" or "C:/www/django/static".
  76.     # Always use forward slashes, even on Windows.
  77.     # Don't forget to use absolute paths, not relative paths.
  78. )
  79.  
  80. # List of finder classes that know how to find static files in
  81. # various locations.
  82. STATICFILES_FINDERS = (
  83.     'django.contrib.staticfiles.finders.FileSystemFinder',
  84.     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  85. #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
  86. )
  87.  
  88. # Make this unique, and don't share it with anybody.
  89. SECRET_KEY = ')962ah@7i(^=!%nl96(yk1^-x_l5)@7#%r&ty1el7q^+$9r&ze'
  90.  
  91. # List of callables that know how to import templates from various sources.
  92. TEMPLATE_LOADERS = (
  93.     'django.template.loaders.filesystem.Loader',
  94.     'django.template.loaders.app_directories.Loader',
  95. #     'django.template.loaders.eggs.Loader',
  96. )
  97.  
  98. MIDDLEWARE_CLASSES = (
  99.     'django.middleware.common.CommonMiddleware',
  100.     'django.contrib.sessions.middleware.SessionMiddleware',
  101.     'django.middleware.csrf.CsrfViewMiddleware',
  102.     'django.contrib.auth.middleware.AuthenticationMiddleware',
  103.     'django.contrib.messages.middleware.MessageMiddleware',
  104.     'django.middleware.locale.LocaleMiddleware',
  105. )
  106.  
  107. ROOT_URLCONF = 'dip.urls'
  108.  
  109. TEMPLATE_DIRS = (r'E:/dip/templates',)
  110.  
  111. INSTALLED_APPS = (
  112.     'django.contrib.auth',
  113.     'django.contrib.contenttypes',
  114.     'django.contrib.sessions',
  115.     'django.contrib.sites',
  116.     'django.contrib.messages',
  117.     'django.contrib.staticfiles',
  118.     # Uncomment the next line to enable the admin:
  119.     'django.contrib.admin',
  120.     # Uncomment the next line to enable admin documentation:
  121.     # 'django.contrib.admindocs',
  122.     'dip.app',
  123.     'dip.data',
  124. )
  125.  
  126. # A sample logging configuration. The only tangible logging
  127. # performed by this configuration is to send an email to
  128. # the site admins on every HTTP 500 error.
  129. # See http://docs.djangoproject.com/en/dev/topics/logging for
  130. # more details on how to customize your logging configuration.
  131. LOGGING = {
  132.     'version': 1,
  133.     'disable_existing_loggers': False,
  134.     'handlers': {
  135.         'mail_admins': {
  136.             'level': 'ERROR',
  137.             'class': 'django.utils.log.AdminEmailHandler'
  138.         }
  139.     },
  140.     'loggers': {
  141.         'django.request': {
  142.             'handlers': ['mail_admins'],
  143.             'level': 'ERROR',
  144.             'propagate': True,
  145.         },
  146.     }
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement