Files
pecan/docs/source/pecan_default_config.rst
2011-03-06 14:53:12 -05:00

32 lines
768 B
ReStructuredText

.. _pecan_default_config:
:mod:`pecan.default_config` -- Pecan Default Configuration
==========================================================
The :mod:`pecan.default_config` module contains the default configuration
for all Pecan applications.
.. automodule:: pecan.default_config
:members:
:show-inheritance:
The default configuration is as follows::
# 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,
'force_canonical' : True,
'errors' : {
'__force_dict__' : True
}
}