Files
deb-python-pecan/pecan/default_config.py
2010-12-03 22:54:29 -05:00

21 lines
389 B
Python

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