plone / cookiecutter-zope-instance

It bakes configuration for Zope 5
BSD 3-Clause "New" or "Revised" License
7 stars 4 forks source link

debug_mode documentation is wrong #8

Closed gogobd closed 1 year ago

gogobd commented 1 year ago

Debug mode can't be turned on by setting the variable debug_mode to true. I tried

debug_mode: on
debug_mode: true
debug_mode: 'on'
debug_mode: 'true'
debug_mode: 1

But nothing worked. So I looked at the source code and found debug-mode {{ "on" if cookiecutter.debug_mode == "True" else "off" }}

So the documentation is wrong.

gogobd commented 1 year ago

Unfortunately I can't create a branch here to fix the documentation