qmsk_pngtile/settings/development.py
author Tero Marttila <terom@qmsk.net>
Sat, 04 Oct 2014 14:36:02 +0300
changeset 237 6698dabcc425
parent 235 qmsk_www/settings/development.py@2fb2928eed8c
permissions -rw-r--r--
qmsk_pngtile: django project for pngtile.qmsk.net
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

TEMPLATE_DEBUG = True

ALLOWED_HOSTS = []

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '&e#@fir!k-*w(=0$@j&0guyv8qq*mh7_55j6w@2=hm0x9^ya-2'

## Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
DATABASES = {

}

## Logging
LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'formatters': {
        'qmsk': {
            'format': '[%(levelname)5s] %(module)20s:%(funcName)-20s : %(message)s',
        },
    },
    'handlers': {
        'console': {
            'level':        'DEBUG',
            'class':        'logging.StreamHandler',
            'formatter':    'qmsk',
        },
    },
    'loggers': {

    },
}