Last active
August 29, 2015 14:11
-
-
Save macagua/cdb9733dfa2968a0744c to your computer and use it in GitHub Desktop.
Event Log, Verbose and Debug mode for Plone buildout configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[buildout] | |
extends = http://dist.plone.org/release/4.3-latest/versions.cfg | |
find-links = | |
http://dist.plone.org/release/4.3-latest/ | |
http://dist.plone.org/thirdparty/ | |
show-picked-versions = true | |
eggs = | |
unzip = true | |
versions = versions | |
parts = instance | |
# For example, NAMESPACE.PRODUCT is like collective.cover | |
package-name = NAMESPACE.PRODUCT | |
[versions] | |
[instance] | |
recipe = plone.recipe.zope2instance | |
user = admin:admin | |
http-address = 8080 | |
verbose-security = on | |
debug-mode = on | |
event-log-level = debug | |
eggs = | |
Plone | |
plone.app.upgrade | |
${buildout:package-name} | |
${buildout:eggs} | |
zcml = | |
${buildout:package-name} | |
environment-vars = | |
zope_i18n_compile_mo_files true | |
PTS_LANGUAGES es | |
zope_i18n_allowed_languages es |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment