diff options
Diffstat (limited to 'pyramid/paster_templates/pylons_minimal/development.ini_tmpl')
| -rw-r--r-- | pyramid/paster_templates/pylons_minimal/development.ini_tmpl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pyramid/paster_templates/pylons_minimal/development.ini_tmpl b/pyramid/paster_templates/pylons_minimal/development.ini_tmpl new file mode 100644 index 000000000..d3c8b57c9 --- /dev/null +++ b/pyramid/paster_templates/pylons_minimal/development.ini_tmpl @@ -0,0 +1,28 @@ +[app:{{project}}] +use = egg:{{project}} +reload_templates = true +mako.directories = {{package}}:templates +debug_authorization = false +debug_notfound = false +debug_templates = true +default_locale_name = en +session.type = file +session.data_dir = %(here)s/data/sessions/data +session.lock_dir = %(here)s/data/sessions/lock +session.key = {{project}} +session.secret = your_app_secret_string +cache.regions = default_term, second, short_term, long_term +cache.type = memory +cache.second.expire = 1 +cache.short_term.expire = 60 +cache.default_term.expire = 300 +cache.long_term.expire = 3600 + +[pipeline:main] +pipeline = egg:WebError#evalerror + {{project}} + +[server:main] +use = egg:Paste#http +host = 0.0.0.0 +port = 5000 |
