cmpuqrct/settings/default.py
changeset 67 dbb8316af016
parent 24 bd646c8d68d8
equal deleted inserted replaced
66:8ca335eab457 67:dbb8316af016
     1 # Default settings intended for development use
     1 # Default settings intended for development use
       
     2 
       
     3 from cmpuqrct.settings.base import *
     2 
     4 
     3 ## Error handling
     5 ## Error handling
     4 DEBUG = True
     6 DEBUG = True
     5 TEMPLATE_DEBUG = DEBUG
     7 TEMPLATE_DEBUG = DEBUG
       
     8 
       
     9 ## Debug toolbar
       
    10 MIDDLEWARE_CLASSES += (
       
    11     'debug_toolbar.middleware.DebugToolbarMiddleware',
       
    12 )
       
    13 
       
    14 INSTALLED_APPS += (
       
    15     'debug_toolbar',
       
    16 )
       
    17 
       
    18 INTERNAL_IPS = (
       
    19     '127.0.0.1',
       
    20 )
     6 
    21 
     7 ## Secrets
    22 ## Secrets
     8 # Make this unique, and don't share it with anybody.
    23 # Make this unique, and don't share it with anybody.
     9 SECRET_KEY = 'wn78diy2()$xy%fapw8aka1hc_8(dbjv*wktfzn6x&rc#1p8x)'
    24 SECRET_KEY = 'wn78diy2()$xy%fapw8aka1hc_8(dbjv*wktfzn6x&rc#1p8x)'
    10 
    25