source: main/waeup.kofa/branches/uli-zc-async/buildout-windows.cfg @ 8871

Last change on this file since 8871 was 8357, checked in by uli, 12 years ago

Put versions into separate config file.

File size: 2.2 KB
Line 
1[buildout]
2develop = .
3parts =
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
18extends = 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/.
26recipe = zc.recipe.egg
27eggs = waeup.kofa
28       z3c.evalexception>=2.0
29       Paste
30       PasteScript
31       PasteDeploy
32interpreter = python-console
33scripts = paster=paster
34
35[mkdirs]
36recipe = z3c.recipe.mkdir
37paths =
38    ${zope_conf:filestorage}
39    ${zope_conf:logfiles}
40    ${zope_conf:blobstorage}
41    ${buildout:directory}/var/datacenter/media
42
43[zope_conf]
44recipe = collective.recipe.template
45input = etc/zope.conf.in
46output = ${buildout:parts-directory}/etc/zope.conf
47filestorage = ${buildout:directory}/var/filestorage
48blobstorage = ${buildout:directory}/var/blobstorage
49logfiles = ${buildout:directory}/var/log
50extra =
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]
59recipe = zc.recipe.filestorage
60
61[log]
62recipe = zc.recipe.filestorage
63
64[site_zcml]
65recipe = collective.recipe.template
66input = etc/site.zcml.in
67output = ${buildout:parts-directory}/etc/site.zcml
68
69[zdaemon_conf]
70recipe = collective.recipe.template
71input = etc/zdaemon.conf.in
72output = ${buildout:parts-directory}/etc/zdaemon.conf
73
74[deploy_ini]
75recipe = collective.recipe.template
76input = etc/deploy.ini.in
77output = ${buildout:parts-directory}/etc/deploy.ini
78
79[debug_ini]
80recipe = collective.recipe.template
81input = etc/debug.ini.in
82output = ${buildout:parts-directory}/etc/debug.ini
83
84[eggbasket]
85recipe = z3c.recipe.eggbasket
86eggs = grok
87url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
Note: See TracBrowser for help on using the repository browser.