Switch to unified view

a/pyforge/development.ini b/pyforge/development.ini
...
...
79
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
79
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
80
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
80
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
81
# execute malicious code after an exception is raised.
81
# execute malicious code after an exception is raised.
82
#set debug = false
82
#set debug = false
83
83
84
[app:plugin_test]
85
use = egg:pyforge#plugin_test
86
full_stack = true
87
88
cache_dir = %(here)s/data
89
beaker.session.key = pyforge
90
beaker.session.type = cookie
91
beaker.session.secret = 61ece7db-ba8d-49fe-a923-ab444741708c
92
beaker.session.validate_key = 714bfe3612c42390726f
93
94
# Ming setup
95
ming.main.master = mongo://127.0.0.1:27017/pyforge:test
96
97
sqlalchemy.url = sqlite:///%(here)s/devdata.db
98
#echo shouldn't be used together with the logging module.
99
sqlalchemy.echo = false
100
sqlalchemy.echo_pool = false
101
sqlalchemy.pool_recycle = 3600
102
templating.mako.reloadfromdisk = true
103
84
# Logging configuration
104
# Logging configuration
85
# Add additional loggers, handlers, formatters here
105
# Add additional loggers, handlers, formatters here
86
# Uses python's logging config file format
106
# Uses python's logging config file format
87
# http://docs.python.org/lib/logging-config-fileformat.html
107
# http://docs.python.org/lib/logging-config-fileformat.html
88
108