beaker = {
'session.key' : 'shootq',
'session.type' : 'cookie',
'session.validate_key' : 'XYZ',
'__force_dict__' : True
}
15 lines
370 B
Python
15 lines
370 B
Python
# Pecan Application Configurations
|
|
beaker = {
|
|
'session.key' : 'key',
|
|
'session.type' : 'cookie',
|
|
'session.validate_key' : '1a971a7df182df3e1dec0af7c6913ec7',
|
|
'__force_dict__' : True
|
|
}
|
|
|
|
# Custom Configurations must be in Python dictionary format::
|
|
#
|
|
# foo = {'bar':'baz'}
|
|
#
|
|
# All configurations are accessible at::
|
|
# pecan.conf
|