hosingh000 50de35d7e8 cleanup legacy changes
Change-Id: I5a29cee1ed9e3ea18d2e7e659d5e3143d122bf62
2017-07-31 13:34:35 -05:00

70 lines
1.9 KiB
Python
Executable File

# Server Specific Configurations
server = {
'port': '8090',
'host': '0.0.0.0'
}
# Pecan Application Configurations
app = {
'root': 'uuidgen.controllers.root.RootController',
'modules': ['uuidgen'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/uuidgen/templates',
'debug': True,
'errors': {
404: '/error/404',
'__force_dict__': True
}
}
logging = {
'root': {'level': 'INFO', 'handlers': ['console']},
'loggers': {
'uuidgen': {'level': 'DEBUG', 'handlers': ['console', 'Logfile'],
'propagate': False},
'pecan': {'level': 'DEBUG', 'handlers': ['console'],
'propagate': False},
'py.warnings': {'handlers': ['console']},
'__force_dict__': True
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'color'
},
'Logfile': {
'level': 'DEBUG',
'class': 'logging.handlers.RotatingFileHandler',
'maxBytes': 50000000,
'backupCount': 10,
'filename': '/opt/app/orm/uuidgen/uuidgen.log',
'formatter': 'simple'
}
},
'formatters': {
'simple': {
'format': ('%(asctime)s %(levelname)-5.5s [%(name)s]'
'[%(threadName)s] %(message)s')
},
'color': {
'()': 'pecan.log.ColorFormatter',
'format': ('%(asctime)s [%(padded_color_levelname)s] [%(name)s]'
'[%(threadName)s] %(message)s'),
'__force_dict__': True
}
}
}
verify = False
database = {
'connection_string': 'mysql://root:stack@localhost:3306/orm'
}
# Custom Configurations must be in Python dictionary format::
#
# foo = {'bar':'baz'}
#
# All configurations are accessible at::
# pecan.conf