source: main/kofacustom.nigeria/trunk/buildout.cfg @ 17316

Last change on this file since 17316 was 17316, checked in by Henrik Bettermann, 20 months ago

Adjust to base package.

File size: 5.6 KB
Line 
1[buildout]
2# See http://pypi.python.org/pypi/mr.developer for details
3extensions = mr.developer
4# Install waeup.kofa as develop egg
5auto-checkout = waeup.kofa
6sources-dir = sources
7develop = .
8parts =
9    app
10    i18n
11    test
12    mkdirs
13    zpasswd
14    zope_conf
15    site_zcml
16    zdaemon_conf
17    raw_deploy_ini
18    raw_debug_ini
19    themed_deploy_ini
20    themed_debug_ini
21    profile_ini
22# waeupdocs
23    coverage-detect
24    coverage-report
25# kofactl creation must be _after_ app!
26    kofactl
27    lxml
28    diazo
29# For backward compatibility, telling buildout not to throw away
30# the data and log subdirectories from the parts directory.
31    data
32    log
33# newest = false
34
35extends = versions.cfg
36show-picked-versions = true
37update-versions-file = versions.cfg
38
39index = https://pypi.python.org/simple/
40
41# eggs will be installed in the default buildout location
42# (see .buildout/default.cfg in your home directory)
43# unless you specify an eggs-directory option here.
44
45[sources]
46waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/trunk
47[kofa_params]
48## Basic parameters for deployment.
49# default is 127.0.0.1
50host = 0.0.0.0
51# default is 8080
52base_port = 8080
53zeo1_port = 8080
54zeo2_port = 8081
55zeo3_port = 8082
56server_port = 8100
57# default 7. Number of pre-opened ZODB threads/client
58pool_size = 7
59# default 20MB. Cache size of each client (ZEO only)
60client_cache = 20MB
61# default 5000. Number of objects cached.
62object_cache = 5000
63# number of preopened paster threads, default 10
64threadpool_workers = 10
65devel_pkg = kofacustom.nigeria
66
67[app]
68# This creates all scripts in bin/. The kofactl created here is 'faulty'.
69recipe = zc.recipe.egg
70eggs = kofacustom.nigeria [beaker, diazo]
71       z3c.evalexception>=2.0
72       Paste
73       PasteScript
74       PasteDeploy
75       repoze.profile
76       ZODB3
77interpreter = python-console
78
79[kofactl]
80# See http://pypi.python.org/pypi/zc.recipe.egg for details...
81# Here we create the kofactl script again, this time with a
82# fixed path to zdaemon.conf as argument.
83recipe = zc.recipe.egg
84eggs = kofacustom.nigeria [beaker, diazo]
85       waeup.kofa
86arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
87scripts = kofactl=kofactl
88
89[mkdirs]
90recipe = z3c.recipe.mkdir
91paths =
92    ${zope_conf:filestorage}
93    ${zope_conf:logfiles}
94    ${zope_conf:blobstorage}
95    ${buildout:directory}/var/mailqueue/cur
96    ${buildout:directory}/var/mailqueue/tmp
97    ${buildout:directory}/var/mailqueue/new
98    ${buildout:directory}/var/datacenter/media
99    ${buildout:directory}/parts/test/datacenter
100
101[test]
102recipe = zc.recipe.testrunner
103eggs = kofacustom.nigeria [beaker, test]
104defaults = ['--tests-pattern', '^f?tests$', '-v']
105
106# this section named so that the i18n scripts are called bin/i18n...
107[i18n]
108recipe = z3c.recipe.i18n:i18n
109packages = kofacustom.nigeria
110eggs = kofacustom.nigeria
111domain = kofacustom.nigeria
112output = src/kofacustom/nigeria/locales
113zcml =
114
115# This section is named so that the zpasswd utility is
116# called `zpasswd`
117[zpasswd]
118recipe = z3c.recipe.dev:script
119eggs = kofacustom.nigeria
120module = zope.app.server.zpasswd
121method = main
122
123[zope_conf]
124recipe = collective.recipe.template
125input = etc/zope.conf.in
126output = ${buildout:parts-directory}/etc/zope.conf
127filestorage = ${buildout:directory}/var/filestorage
128blobstorage = ${buildout:directory}/var/blobstorage
129logfiles = ${buildout:directory}/var/log
130extra =
131# extra = <grokwarnings>True</grokwarnings>
132# 'extra' is copied verbatim. Use it for product config sections and so.
133
134# The [data] and [log] parts are still in here to instruct buildout to not
135# unintentionally throw away the parts/data and parts/log subdirectories
136# that contain the Data.fs and the log files. These files should be
137# copied to the new locations. See the upgrade notes for more information.
138[data]
139recipe = zc.recipe.filestorage
140
141[log]
142recipe = zc.recipe.filestorage
143
144[mailqueue]
145recipe = zc.recipe.filestorage
146
147[site_zcml]
148recipe = collective.recipe.template
149input = etc/site.zcml.in
150output = ${buildout:parts-directory}/etc/site.zcml
151
152[zdaemon_conf]
153recipe = collective.recipe.template
154input = etc/zdaemon.conf.in
155output = ${buildout:parts-directory}/etc/zdaemon.conf
156
157[raw_debug_ini]
158recipe = collective.recipe.template
159input = etc/raw/debug.ini.in
160output = ${buildout:parts-directory}/etc/raw-debug.ini
161
162[raw_deploy_ini]
163recipe = collective.recipe.template
164input = etc/raw/deploy.ini.in
165output = ${buildout:parts-directory}/etc/raw-deploy.ini
166
167[themed_debug_ini]
168recipe = collective.recipe.template
169input = etc/themed/debug.ini.in
170output = ${buildout:parts-directory}/etc/themed-debug.ini
171
172[themed_deploy_ini]
173recipe = collective.recipe.template
174input = etc/themed/deploy.ini.in
175output = ${buildout:parts-directory}/etc/themed-deploy.ini
176
177[profile_ini]
178recipe = collective.recipe.template
179input = etc/profile.ini.in
180output = ${buildout:parts-directory}/etc/profile.ini
181
182#[waeupdocs]
183#recipe = collective.recipe.sphinxbuilder
184#eggs = kofacustom.nigeria[docs]
185#source = ${buildout:directory}/docs/source
186#build = ${buildout:directory}/docs/build
187
188# Collect test coverage data.
189[coverage-detect]
190recipe = zc.recipe.testrunner
191eggs = kofacustom.nigeria[beaker]
192defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
193
194# Create a coverage report.
195# Make sure to run bin/coverage-detect to collect the data for the report
196# first!
197[coverage-report]
198recipe = zc.recipe.egg
199eggs = z3c.coverage
200scripts = coveragereport
201arguments = ('${buildout:parts-directory}/coverage-detect/coverage', '${buildout:directory}/coverage-report')
202
203[lxml]
204recipe = z3c.recipe.staticlxml
205egg = lxml
206
207[diazo]
208recipe = zc.recipe.egg
209eggs =
210    diazo [wsgi]
211    PasteScript
212    kofacustom.nigeria [beaker,diazo]
Note: See TracBrowser for help on using the repository browser.