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

768 B

pecan.default_config -- Pecan Default Configuration

The pecan.default_config module contains the default configuration for all Pecan applications.

pecan.default_config

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
    }
}