2 # floof - Pylons development environment configuration
4 # The %(here)s variable will be replaced with the parent directory of this file
8 # Uncomment and replace with the address which should receive any error reports
9 #email_to = you@yourdomain.com
10 smtp_server = localhost
11 error_email_from = paste@localhost
23 cache_dir = %(here)s/data
24 beaker.session.key = floof
25 beaker.session.secret = somesecret
27 # If you'd like to fine-tune the individual locations of the cache data dirs
28 # for the Cache data, or the Session saves, un-comment the desired settings
30 #beaker.cache.data_dir = %(here)s/data/cache
31 #beaker.session.data_dir = %(here)s/data/sessions
33 # SQLAlchemy database URL
34 sqlalchemy.url = sqlite:///%(here)s/development.db
36 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
37 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
38 # execute malicious code after an exception is raised.
42 # Logging configuration
44 keys = root, routes, floof, sqlalchemy
59 qualname = routes.middleware
60 # "level = DEBUG" logs the route matched and routing variables.
70 qualname = sqlalchemy.engine
71 # "level = INFO" logs SQL queries.
72 # "level = DEBUG" logs SQL queries and results.
73 # "level = WARN" logs neither. (Recommended for production systems.)
82 format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s