Advertisement
Guest User

settings.py

a guest
Feb 21st, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. # edit domain below
  2. ALLOWED_HOSTS = ['sest.gq']
  3.  
  4. # Django settings for djangotest project.
  5.  
  6. DEBUG = True
  7. TEMPLATE_DEBUG = DEBUG
  8.  
  9. ADMINS = (
  10. # ('Your Name', 'your_email@domain.com'),
  11. )
  12.  
  13. MANAGERS = ADMINS
  14.  
  15. DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
  16. DATABASE_NAME = '' # Or path to database file if using sqlite3.
  17. DATABASE_USER = '' # Not used with sqlite3.
  18. DATABASE_PASSWORD = '' # Not used with sqlite3.
  19. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
  20. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
  21.  
  22. # Local time zone for this installation. Choices can be found here:
  23. # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
  24. # although not all variations may be possible on all operating systems.
  25. # If running in a Windows environment this must be set to the same as your
  26. # system time zone.
  27. TIME_ZONE = 'America/Chicago'
  28.  
  29. # Language code for this installation. All choices can be found here:
  30. # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
  31. # http://blogs.law.harvard.edu/tech/stories/storyReader$15
  32. LANGUAGE_CODE = 'en-us'
  33.  
  34. SITE_ID = 1
  35.  
  36. # If you set this to False, Django will make some optimizations so as not
  37. # to load the internationalization machinery.
  38. USE_I18N = True
  39.  
  40. # Absolute path to the directory that holds media.
  41. # Example: "/home/media/media.lawrence.com/"
  42. MEDIA_ROOT = ''
  43.  
  44. # URL that handles the media served from MEDIA_ROOT.
  45. # Example: "http://media.lawrence.com"
  46. MEDIA_URL = ''
  47.  
  48. # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
  49. # trailing slash.
  50. # Examples: "http://foo.com/media/", "/media/".
  51. ADMIN_MEDIA_PREFIX = '/media/'
  52.  
  53. # Make this unique, and don't share it with anybody.
  54. SECRET_KEY = 'password'
  55.  
  56. # List of callables that know how to import templates from various sources.
  57. TEMPLATE_LOADERS = (
  58. 'django.template.loaders.filesystem.load_template_source',
  59. 'django.template.loaders.app_directories.load_template_source',
  60. # 'django.template.loaders.eggs.load_template_source',
  61. )
  62.  
  63. MIDDLEWARE_CLASSES = (
  64. 'django.middleware.common.CommonMiddleware',
  65. 'django.contrib.sessions.middleware.SessionMiddleware',
  66. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  67. # 'django.middleware.doc.XViewMiddleware',
  68. 'django.contrib.admindocs.middleware.XViewMiddleware',
  69. )
  70.  
  71. ROOT_URLCONF = 'urls'
  72.  
  73. TEMPLATE_DIRS = (
  74. # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  75. # Always use forward slashes, even on Windows.
  76. # Don't forget to use absolute paths, not relative paths.
  77. )
  78.  
  79. INSTALLED_APPS = (
  80. 'django.contrib.auth',
  81. 'django.contrib.contenttypes',
  82. 'django.contrib.sessions',
  83. 'django.contrib.sites',
  84. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement