root/plumi-buildout-plone3/trunk/buildout.cfg

Revision 373, 4.1 kB (checked in by andy, 2 months ago)

remove vaporisation egg, not working in buildout at the moment

Line 
1# my main plone cluster buildout, based on plone-3.x buildout.
2# includes plone.app.blob and uses site.cfg for site-specific settings.
3
4# 6 nov 2008
5# was copied from http://myriadicity.net/Sundry/PloneBlobs
6# andy@engagemedia.org
7
8
9[buildout]
10extends =
11    site.cfg
12    devel.cfg
13parts =
14    plone
15    zope2
16    instance
17    zeo
18    client1
19    client2
20# Carte blanc products:
21    quills
22# Optional products:
23    clouseau
24    pdbdebugmode
25    docfindertab
26# access to enablesettrace is failing - could use this code instead:
27#import AccessControl; AccessControl.ModuleSecurityInfo('pdb').declarePublic('set_trace')
28#    enablesettrace
29    ptprofiler
30    zopeprofiler
31    zptdebugger
32    deadlockdebugger
33    ipzope
34    plumi
35
36find-links =
37    http://dist.plone.org
38    http://download.zope.org/ppix/
39    http://download.zope.org/distribution/
40    http://effbot.org/downloads
41    https://svn.plone.org/svn/collective/Vaporisation/branches/vaporisation2-plone3-egg#egg=vaporisation
42
43eggs =
44    elementtree
45
46[plone]
47recipe = plone.recipe.plone >=3.1.1,<3.2dev
48
49[zope2]
50recipe = plone.recipe.zope2install
51url = ${plone:zope2-url}
52
53[instance]
54recipe = plone.recipe.zope2instance
55zope2-location = ${zope2:location}
56var = ${site:var}
57blob-storage = ${site:var}/blobstorage
58user = ${site:user}
59http-address = ${site:http-address}
60port-base = ${site:port-base-instance}
61debug-mode = on
62verbose-security = on
63eggs =
64    ${buildout:eggs}
65    ${plone:eggs}
66    plone.app.blob
67    Products.contentmigration
68    ${p4a_plonevideo:eggs}
69zcml =
70    plone.app.blob
71    Products.contentmigration
72    ${p4a_plonevideo:zcml}
73products =
74    ${plone:products}
75    ${quills-settings:products}
76    ${plumi:location}
77extra-paths =
78    ${quills-settings:extra-paths}
79zope-conf-additional = ${site:zope-conf-additional}
80
81[zeo]
82recipe = plone.recipe.zope2zeoserver
83zope2-location = ${zope2:location}
84zeo-address = ${site:zeo-address}
85zeo-var = ${site:var}
86blob-storage = ${site:blob-storage}
87effective-user = ${site:effective-user}
88cache-size = 100MB
89# klm 2008-08-16 unsure that Products.contentmigration is necessary.
90eggs =
91    plone.app.blob
92    Products.contentmigration
93
94[client1]
95recipe = plone.recipe.zope2instance
96zope2-location = ${zope2:location}
97zeo-client = on
98effective-user = ${site:effective-user}
99user = ${site:user}
100var = ${site:var}
101blob-storage = ${site:blob-storage}
102http-address = ${site:http-address}
103port-base = ${site:port-base-client1}
104zeo-address = ${site:zeo-address}
105blob-storage = ${zeo:blob-storage}
106shared-blob = ${site:shared-blob-client1}
107products =
108    ${site:products}
109    ${plone:products}
110    ${docfindertab:location}
111    ${quills-settings:products}
112eggs =
113    ${buildout:eggs}
114    ${plone:eggs}
115    plone.app.blob
116    ${p4a_plonevideo:eggs}
117zcml =
118    plone.app.blob
119    ${quills-settings:zcml}
120    ${p4a_plonevideo:zcml}
121extra-paths =
122    ${quills-settings:extra-paths}
123zope-conf-additional = ${site:zope-conf-additional}
124    ${buildout:directory}/parts/development-products/
125
126[client2]
127recipe = plone.recipe.zope2instance
128zope2-location = ${zope2:location}
129zeo-client = on
130effective-user = ${site:effective-user}
131user = ${site:user}
132var = ${site:var}
133blob-storage = ${site:blob-storage}
134http-address = ${site:http-address}
135port-base = ${site:port-base-client2}
136zeo-address = ${site:zeo-address}
137blob-storage = ${zeo:blob-storage}
138shared-blob = ${site:shared-blob-client2}
139products =
140    ${client1:products}
141# XXX put debugging products here
142    ${clouseau:location}
143    ${zptdebugger:location}
144#    ${enablesettrace:location}
145# 2008-08-16 getting "No such file or directory" - reenable on next full build
146#    ${zptdebugger:location}
147#    ${zopeprofiler:location}
148# PTProfiler has caused PloneFormGen mail adapter edits to fail.
149#    ${ptprofiler:location}
150# pdbdebugmode triggers pdb too often even for regular debug=on operation -
151# enable in zope.conf only when we want automatic activation of pdb on
152# exceptions, with line:
153#                        products .../parts/pdbdebugmode
154#    ${pdbdebugmode:location}
155eggs = ${client1:eggs}
156# XXX put debugging eggs here
157zcml = ${client1:zcml}
158# XXX put debugging zcml here
159extra-paths = ${client1:extra-paths}
160zope-conf-additional = ${site:zope-conf-additional}
161
Note: See TracBrowser for help on using the browser.