# # asterias - Pylons development environment configuration # # The %(here)s variable will be replaced with the parent directory of this file # [DEFAULT] debug = true email_to = you@yourdomain.com smtp_server = localhost error_email_from = paste@exceptions.com [server:main] use = egg:Paste#http host = 0.0.0.0 port = 5000 [app:main] use = egg:asterias myghty_data_dir = %(here)s/data/templates cache_data_dir = %(here)s/data/cache session_data_dir = %(here)s/data/sessions session_key = asterias session_secret = somesecret # Specify the database for SQLObject to use via pylons.database.PackageHub. # %(here) may include a ':' character on Windows environments; this can # invalidate the URI when specifying a SQLite db via path name. Refer to the # SQLObject documentation for a special syntax to preserve the URI. #sqlobject.dburi = sqlite:%(here)s/somedb.db # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* # Debug mode will enable the interactive debugging tool, allowing ANYONE to # execute malicious code after an exception is raised. #set debug = false