Files
pecan/tests/test_config/config.py
2010-12-14 14:41:43 -05:00

23 lines
445 B
Python

# Server Specific Configurations
server = {
'port' : '8081',
'host' : '1.1.1.1',
'socket': '{pecan.conf.server.host}:{pecan.conf.server.host}'
}
# Pecan Application Configurations
app = {
'static_root' : 'public',
'template_path' : 'myproject/templates',
'debug' : True
}
# Custom Configurations must be in Python dictionary format::
#
# foo = {'bar':'baz'}
#
# All configurations are accessible at::
# pecan.conf