Files
deb-python-pecan/pecan/default_config.py
2011-01-14 16:57:24 -05:00

25 lines
465 B
Python

# Server Specific Configurations
server = {
'port' : '8080',
'host' : '0.0.0.0'
}
# Pecan Application Configurations
app = {
'root' : None,
'modules' : [],
'static_root' : 'public',
'template_path' : '',
'debug' : False,
'errors' : {
'__force_dict__' : True
}
}
# Custom Configurations must be in Python dictionary format in user config
#
# foo = {'bar':'baz'}
#
# All configurations are accessible at::
# pecan.conf