
Story: 2008529 Task: 41688 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: Ib276520605cc624a9976f804a1721ba2c5909403
26 lines
579 B
Python
26 lines
579 B
Python
# Server Specific Configurations
|
|
server = {
|
|
'port': '8080',
|
|
'host': '0.0.0.0'
|
|
}
|
|
|
|
# Pecan Application Configurations
|
|
app = {
|
|
'root': 'notificationclient.controllers.root.RootController',
|
|
'modules': ['notificationclient'],
|
|
'static_root': '%(confdir)s/../../public',
|
|
'template_path': '%(confdir)s/../templates',
|
|
'debug': True,
|
|
'errors': {
|
|
'404': '/error/404',
|
|
'__force_dict__': True
|
|
}
|
|
}
|
|
|
|
# Custom Configurations must be in Python dictionary format::
|
|
#
|
|
# foo = {'bar':'baz'}
|
|
#
|
|
# All configurations are accessible at::
|
|
# pecan.conf
|