23 lines
445 B
Python
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
|