Analyzing the contents of our buildout
In this book, we have created a fairly large buildout, spread across many files. As a result, perhaps you are wondering what it would look like if the same buildout were contained in a single file?
We answer that question in 08-future-final.cfg
, which contains the following sections, parameters, and values, presented here along with some commentary about each:
Every buildout must define a
buildout
section:[buildout]
By assigning parameters from various
versions
sections to theversions
parameter in thebuildout
section, we are able to specify package version numbers:versions = versions
Every
buildout
section must have aparts
parameter (even if it is empty):parts = zope2 instance
In Chapter 2, Site Basics, we introduced the collective.recipe.plonesite recipe (http://pypi.python.org/pypi/collective.recipe.plonesite) configured in a section called
plonesite
:# Chapter 2 plonesite
In Chapter 3, Appearance, we introduced the collective.recipe.omelette...