source: main/waeup.kofa/branches/uli-diazo-themed/buildout-diazo.cfg @ 11007

Last change on this file since 11007 was 10964, checked in by uli, 11 years ago

Remove overhead.

File size: 1.9 KB
Line 
1[buildout]
2parts = 
3    app
4    i18n
5    test
6    mkdirs
7    zpasswd
8    site_zcml
9    zope_conf
10    zdaemon_conf
11    raw_deploy_ini
12    raw_debug_ini
13    themed_deploy_ini
14    themed_debug_ini
15    profile_ini
16    kofactl
17    waeupdocs
18    coverage-detect
19    coverage-report
20    lxml
21    diazo
22# For backward compatibility, telling buildout not to throw away
23# the data and log subdirectories from the parts directory.
24    data
25    log
26
27extends =
28    http://good-py.appspot.com/release/diazo/1.0
29    buildout.cfg
30
31find-links =
32
33extensions =
34    mr.developer
35
36develop = .
37
38show-picked-versions = true
39update-versions-file = versions.cfg
40
41[lxml]
42recipe = z3c.recipe.staticlxml
43egg = lxml
44
45[diazo]
46recipe = zc.recipe.egg
47eggs =
48    diazo [wsgi]
49    PasteScript
50    waeup.kofa [beaker]
51
52#
53# waeup.kofa config
54#
55[app]
56recipe = zc.recipe.egg
57eggs = waeup.kofa [beaker, diazo]
58       z3c.evalexception>=2.0
59       Paste
60       PasteScript
61       PasteDeploy
62       repoze.profile
63       ZODB3
64interpreter = python-console
65
66
67[raw_debug_ini]
68recipe = collective.recipe.template
69input = etc/raw/debug.ini.in
70output = ${buildout:parts-directory}/etc/raw-debug.ini
71
72[raw_deploy_ini]
73recipe = collective.recipe.template
74input = etc/raw/deploy.ini.in
75output = ${buildout:parts-directory}/etc/raw-deploy.ini
76
77[themed_debug_ini]
78recipe = collective.recipe.template
79input = etc/themed/debug.ini.in
80output = ${buildout:parts-directory}/etc/themed-debug.ini
81
82[themed_deploy_ini]
83recipe = collective.recipe.template
84input = etc/themed/deploy.ini.in
85output = ${buildout:parts-directory}/etc/themed-deploy.ini
86
87#
88# ctl-scripts...
89#
90
91[kofactl]
92# See http://pypi.python.org/pypi/zc.recipe.egg for details...
93# Here we create the kofactl script again, this time with a
94# fixed path to zdaemon.conf as argument.
95recipe = zc.recipe.egg
96eggs = waeup.kofa [beaker, diazo]
97arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
98scripts = kofactl=kofactl
Note: See TracBrowser for help on using the repository browser.