1 | [buildout] |
---|
2 | develop = . |
---|
3 | parts = |
---|
4 | eggbasket |
---|
5 | app |
---|
6 | mkdirs |
---|
7 | zope_conf |
---|
8 | site_zcml |
---|
9 | zdaemon_conf |
---|
10 | deploy_ini |
---|
11 | debug_ini |
---|
12 | # For backward compatibility, telling buildout not to throw away |
---|
13 | # the data and log subdirectories from the parts directory. |
---|
14 | data |
---|
15 | log |
---|
16 | # newest = false |
---|
17 | |
---|
18 | extends = versions.cfg |
---|
19 | |
---|
20 | # eggs will be installed in the default buildout location |
---|
21 | # (see .buildout/default.cfg in your home directory) |
---|
22 | # unless you specify an eggs-directory option here. |
---|
23 | |
---|
24 | [app] |
---|
25 | # This creates only the paster script in bin/. |
---|
26 | recipe = zc.recipe.egg |
---|
27 | eggs = waeup.kwarapoly |
---|
28 | z3c.evalexception>=2.0 |
---|
29 | Paste |
---|
30 | PasteScript |
---|
31 | PasteDeploy |
---|
32 | interpreter = python-console |
---|
33 | scripts = paster=paster |
---|
34 | |
---|
35 | [mkdirs] |
---|
36 | recipe = z3c.recipe.mkdir |
---|
37 | paths = |
---|
38 | ${zope_conf:filestorage} |
---|
39 | ${zope_conf:logfiles} |
---|
40 | ${zope_conf:blobstorage} |
---|
41 | ${buildout:directory}/var/datacenter/media |
---|
42 | |
---|
43 | [zope_conf] |
---|
44 | recipe = collective.recipe.template |
---|
45 | input = etc/zope.conf.in |
---|
46 | output = ${buildout:parts-directory}/etc/zope.conf |
---|
47 | filestorage = ${buildout:directory}/var/filestorage |
---|
48 | blobstorage = ${buildout:directory}/var/blobstorage |
---|
49 | logfiles = ${buildout:directory}/var/log |
---|
50 | extra = |
---|
51 | # extra = <grokwarnings>True</grokwarnings> |
---|
52 | # 'extra' is copied verbatim. Use it for product config sections and so. |
---|
53 | |
---|
54 | # The [data] and [log] parts are still in here to instruct buildout to not |
---|
55 | # unintentionally throw away the parts/data and parts/log subdirectories |
---|
56 | # that contain the Data.fs and the log files. These files should be |
---|
57 | # copied to the new locations. See the upgrade notes for more information. |
---|
58 | [data] |
---|
59 | recipe = zc.recipe.filestorage |
---|
60 | |
---|
61 | [log] |
---|
62 | recipe = zc.recipe.filestorage |
---|
63 | |
---|
64 | [site_zcml] |
---|
65 | recipe = collective.recipe.template |
---|
66 | input = etc/site.zcml.in |
---|
67 | output = ${buildout:parts-directory}/etc/site.zcml |
---|
68 | |
---|
69 | [zdaemon_conf] |
---|
70 | recipe = collective.recipe.template |
---|
71 | input = etc/zdaemon.conf.in |
---|
72 | output = ${buildout:parts-directory}/etc/zdaemon.conf |
---|
73 | |
---|
74 | [deploy_ini] |
---|
75 | recipe = collective.recipe.template |
---|
76 | input = etc/deploy.ini.in |
---|
77 | output = ${buildout:parts-directory}/etc/deploy.ini |
---|
78 | |
---|
79 | [debug_ini] |
---|
80 | recipe = collective.recipe.template |
---|
81 | input = etc/debug.ini.in |
---|
82 | output = ${buildout:parts-directory}/etc/debug.ini |
---|
83 | |
---|
84 | [eggbasket] |
---|
85 | recipe = z3c.recipe.eggbasket |
---|
86 | eggs = grok |
---|
87 | url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz |
---|