Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. # pylint: disable-all
  2. """
  3. settings_local.py
  4.  
  5. Change site-specific settings here.
  6. """
  7.  
  8. from settings_default import *
  9.  
  10. """
  11. There's a list of settings that you will probably override.
  12. """
  13.  
  14. """
  15. DEBUG
  16.  
  17. Turns Django into development mode.
  18.  
  19. Default: False
  20. """
  21. #DEBUG = False
  22.  
  23. """
  24. TEMPLATE_DEBUG
  25.  
  26. Additional debug data for templates.
  27.  
  28. Default: False
  29. """
  30. #TEMPLATE_DEBUG = False
  31.  
  32. """
  33. TEMPLATE_CACHING
  34.  
  35. Specifies whether templates should be cached or not.
  36.  
  37. Default: True
  38. """
  39. #TEMPLATE_CACHING = True
  40.  
  41. """
  42. INTERNAL_IPS
  43.  
  44. Used by django-debug-toolbar.
  45.  
  46. Default: ('127.0.0.1',)
  47. """
  48. #INTERNAL_IPS = ('127.0.0.1',)
  49.  
  50. """
  51. ADMINS
  52.  
  53. A list of chaps maintaining the app.
  54.  
  55. Default: ()
  56. """
  57. #ADMINS = (
  58. # ('John Doe', 'joe@doe.com'),
  59. #)
  60.  
  61. """
  62. DATABASES
  63.  
  64. Database-stuff.
  65.  
  66. Default: SQLite database
  67. """
  68. #DATABASES = {
  69. # 'default': {
  70. # # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3'.
  71. # 'ENGINE': 'django.db.backends.sqlite3',
  72. # # Or path to database file if using sqlite3.
  73. # 'NAME': PROJECT_DIR + '/teerace.sqlite',
  74. # # Not used with sqlite3.
  75. # 'USER': '',
  76. # # Not used with sqlite3.
  77. # 'PASSWORD': '',
  78. # # Set to empty string for localhost. Not used with sqlite3.
  79. # 'HOST': '',
  80. # # Set to empty string for default. Not used with sqlite3.
  81. # 'PORT': '',
  82. # }
  83. #}
  84.  
  85. """
  86. CACHE_BACKEND
  87.  
  88. Default: cache will be stored in local RAM.
  89. With memcached: 'johnny.backends.memcached://localhost:11211/'
  90. """
  91. CACHE_BACKEND = 'johnny.backends.memcached://localhost:11211/'
  92.  
  93. """
  94. WEBMASTER_EMAIL
  95.  
  96. E-mail address displayed when 404/500 is raised.
  97.  
  98. Default: ""
  99. """
  100. #WEBMASTER_EMAIL = ''
  101.  
  102. """
  103. RECAPTCHA_PUBLIC_KEY
  104.  
  105.  
  106.  
  107. Default: ""
  108. """
  109. #RECAPTCHA_PUBLIC_KEY = ''
  110.  
  111. """
  112. RECAPTCHA_PRIVATE_KEY
  113.  
  114.  
  115.  
  116. Default: ""
  117. """
  118. #RECAPTCHA_PRIVATE_KEY = ''
  119.  
  120.  
  121. """
  122. SECRET_KEY
  123.  
  124. The Answer to the Ultimate Question of Life, the Universe, and Everything.
  125.  
  126. Default: "foobar" (PLEASE CHANGE THAT)
  127. """
  128. #SECRET_KEY = 'foobar'
  129.  
  130. """
  131. BROKER_HOST
  132.  
  133. Hostname of the broker.
  134. """
  135. #BROKER_HOST = "localhost"
  136.  
  137. """
  138. BROKER_PORT
  139.  
  140. Custom port of the broker.
  141. Default is to use the default port for the selected backend.
  142. """
  143. #BROKER_PORT = 5672
  144.  
  145. """
  146. BROKER_USER
  147.  
  148. Username to connect as.
  149. """
  150. #BROKER_USER = "guest"
  151.  
  152. """
  153. BROKER_PASSWORD
  154.  
  155. Password to connect with.
  156. """
  157. #BROKER_PASSWORD = "guest"
  158.  
  159. """
  160. MIDDLEWARE_CLASSES
  161.  
  162. You might want to add some debug stuff here.
  163. """
  164. #MIDDLEWARE_CLASSES = MIDDLEWARE_CLASSES + ()
  165.  
  166.  
  167. """
  168. INSTALLED_APPS
  169.  
  170. You might want to add some debug stuff here.
  171. """
  172. #INSTALLED_APPS = INSTALLED_APPS + ()
  173.  
  174. ANALYTICS_ID = 'UA-20347757-4'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement