qmsk_pngtile/settings/development.py
changeset 237 6698dabcc425
parent 235 2fb2928eed8c
equal deleted inserted replaced
236:4ca68e4eb386 237:6698dabcc425
       
     1 # See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
       
     2 
       
     3 # SECURITY WARNING: don't run with debug turned on in production!
       
     4 DEBUG = True
       
     5 
       
     6 TEMPLATE_DEBUG = True
       
     7 
       
     8 ALLOWED_HOSTS = []
       
     9 
       
    10 # SECURITY WARNING: keep the secret key used in production secret!
       
    11 SECRET_KEY = '&e#@fir!k-*w(=0$@j&0guyv8qq*mh7_55j6w@2=hm0x9^ya-2'
       
    12 
       
    13 ## Database
       
    14 # https://docs.djangoproject.com/en/1.7/ref/settings/#databases
       
    15 DATABASES = {
       
    16 
       
    17 }
       
    18 
       
    19 ## Logging
       
    20 LOGGING = {
       
    21     'version': 1,
       
    22     'disable_existing_loggers': False,
       
    23     'formatters': {
       
    24         'qmsk': {
       
    25             'format': '[%(levelname)5s] %(module)20s:%(funcName)-20s : %(message)s',
       
    26         },
       
    27     },
       
    28     'handlers': {
       
    29         'console': {
       
    30             'level':        'DEBUG',
       
    31             'class':        'logging.StreamHandler',
       
    32             'formatter':    'qmsk',
       
    33         },
       
    34     },
       
    35     'loggers': {
       
    36 
       
    37     },
       
    38 }
       
    39 
       
    40