cubicweb/skeleton/development.ini.tmpl
changeset 12053 c3c9f2e1424c
parent 12052 1a1d2f5faddb
child 12054 d830ea048c97
equal deleted inserted replaced
12052:1a1d2f5faddb 12053:c3c9f2e1424c
     1 ###
       
     2 # app configuration
       
     3 # http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
       
     4 ###
       
     5 
       
     6 [app:main]
       
     7 use = egg:cubicweb#main
       
     8 
       
     9 pyramid.reload_templates = true
       
    10 pyramid.debug_authorization = false
       
    11 pyramid.debug_notfound = false
       
    12 pyramid.debug_routematch = false
       
    13 pyramid.default_locale_name = en
       
    14 pyramid.includes =
       
    15     pyramid_debugtoolbar
       
    16     cubicweb_%(cubename)s
       
    17 
       
    18 # By default, the toolbar only appears for clients from IP addresses
       
    19 # '127.0.0.1' and '::1'.
       
    20 # debugtoolbar.hosts = 127.0.0.1 ::1
       
    21 
       
    22 ##
       
    23 # CubicWeb instance settings
       
    24 # http://cubicweb.readthedocs.io/en/latest/book/pyramid/settings/
       
    25 ##
       
    26 cubicweb.instance = %%(instance)s
       
    27 cubicweb.bwcompat = False
       
    28 cubicweb.debug = True
       
    29 # cubicweb.session.secret =
       
    30 # cubicweb.auth.authtkt.persistent.secret =
       
    31 cubicweb.auth.authtkt.persistent.secure = False
       
    32 # cubicweb.auth.authtkt.session.secret =
       
    33 cubicweb.auth.authtkt.session.secure = False
       
    34 
       
    35 ###
       
    36 # wsgi server configuration
       
    37 ###
       
    38 
       
    39 [server:main]
       
    40 use = egg:waitress#main
       
    41 listen = 127.0.0.1:6543 [::1]:6543