cubicweb/skeleton/development.ini.tmpl
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 10 Mar 2017 18:25:35 +0100
changeset 12036 4c2c731f9190
parent 12009 a939b3a18d8e
permissions -rw-r--r--
[session] Kill support for a 'session_open' hook event To be consistent with dropping of the 'session_close' event, and also because this is already not called when using pyramid.

###
# app configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###

[app:main]
use = egg:cubicweb#main

pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
    pyramid_debugtoolbar
    cubicweb_%(cubename)s

# By default, the toolbar only appears for clients from IP addresses
# '127.0.0.1' and '::1'.
# debugtoolbar.hosts = 127.0.0.1 ::1

##
# CubicWeb instance settings
# http://cubicweb.readthedocs.io/en/latest/book/pyramid/settings/
##
cubicweb.instance = %%(instance)s
cubicweb.bwcompat = False
cubicweb.debug = True
# cubicweb.session.secret =
# cubicweb.auth.authtkt.persistent.secret =
cubicweb.auth.authtkt.persistent.secure = False
# cubicweb.auth.authtkt.session.secret =
cubicweb.auth.authtkt.session.secure = False

###
# wsgi server configuration
###

[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543