source: main/waeup.kofa/trunk/buildout.cfg @ 17287

Last change on this file since 17287 was 15161, checked in by Henrik Bettermann, 6 years ago

Add index.

File size: 5.4 KB
RevLine 
[3516]1[buildout]
[12831]2extensions = mr.developer
[13470]3auto-checkout =
[12831]4sources-dir = sources
[13470]5develop = .
[5495]6parts =
7    eggbasket
8    app
9    i18n
10    test
11    mkdirs
12    zpasswd
13    zope_conf
14    site_zcml
15    zdaemon_conf
[11254]16    raw_deploy_ini
17    raw_debug_ini
18    themed_deploy_ini
19    themed_debug_ini
[7482]20    profile_ini
[5495]21    waeupdocs
22    coverage-detect
23    coverage-report
[7808]24# kofactl creation must be _after_ app!
25    kofactl
[11254]26    lxml
27    diazo
[5495]28# For backward compatibility, telling buildout not to throw away
29# the data and log subdirectories from the parts directory.
30    data
31    log
[5660]32# newest = false
[5495]33
[8357]34extends = versions.cfg
[10106]35show-picked-versions = true
[10110]36update-versions-file = versions.cfg
[8357]37
[15161]38index = https://pypi.python.org/simple/
[11254]39
[5495]40# eggs will be installed in the default buildout location
41# (see .buildout/default.cfg in your home directory)
42# unless you specify an eggs-directory option here.
43
[12831]44[sources]
[13470]45# None, currently.
[12831]46
[8662]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
[8796]65# package to be developed
66devel_pkg = waeup.kofa
[8662]67
[3516]68[app]
[7808]69# This creates all scripts in bin/. The kofactl created here is 'faulty'.
[5495]70recipe = zc.recipe.egg
[11254]71eggs = waeup.kofa [beaker, diazo]
[5495]72       z3c.evalexception>=2.0
73       Paste
74       PasteScript
75       PasteDeploy
[7482]76       repoze.profile
[8006]77       ZODB3
[5495]78interpreter = python-console
[3516]79
[7808]80[kofactl]
[5503]81# See http://pypi.python.org/pypi/zc.recipe.egg for details...
[7808]82# Here we create the kofactl script again, this time with a
[5503]83# fixed path to zdaemon.conf as argument.
84recipe = zc.recipe.egg
[11254]85eggs = waeup.kofa [beaker, diazo]
[5503]86arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
[7808]87scripts = kofactl=kofactl
[5503]88
[5495]89[mkdirs]
90recipe = z3c.recipe.mkdir
91paths =
92    ${zope_conf:filestorage}
93    ${zope_conf:logfiles}
94    ${zope_conf:blobstorage}
[7470]95    ${buildout:directory}/var/mailqueue/cur
96    ${buildout:directory}/var/mailqueue/tmp
97    ${buildout:directory}/var/mailqueue/new
[7578]98    ${buildout:directory}/var/datacenter/media
[7583]99    ${buildout:directory}/parts/test/datacenter
[4789]100
[5495]101[test]
102recipe = zc.recipe.testrunner
[7808]103eggs = waeup.kofa [beaker, test]
[5495]104defaults = ['--tests-pattern', '^f?tests$', '-v']
[3516]105
[5495]106# this section named so that the i18n scripts are called bin/i18n...
107[i18n]
108recipe = z3c.recipe.i18n:i18n
[7808]109packages = waeup.kofa
110eggs = waeup.kofa
111domain = waeup.kofa
112output = src/waeup/kofa/locales
[5495]113zcml =
[4789]114
[5495]115# This section is named so that the zpasswd utility is
116# called `zpasswd`
117[zpasswd]
118recipe = z3c.recipe.dev:script
[7808]119eggs = waeup.kofa
[5495]120module = zope.app.server.zpasswd
121method = main
[3516]122
[5495]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.
[3516]138[data]
139recipe = zc.recipe.filestorage
140
[5495]141[log]
142recipe = zc.recipe.filestorage
[3516]143
[7470]144[mailqueue]
145recipe = zc.recipe.filestorage
146
[5495]147[site_zcml]
148recipe = collective.recipe.template
149input = etc/site.zcml.in
150output = ${buildout:parts-directory}/etc/site.zcml
[3516]151
[5495]152[zdaemon_conf]
153recipe = collective.recipe.template
154input = etc/zdaemon.conf.in
155output = ${buildout:parts-directory}/etc/zdaemon.conf
156
[11254]157[raw_debug_ini]
[5495]158recipe = collective.recipe.template
[11254]159input = etc/raw/debug.ini.in
160output = ${buildout:parts-directory}/etc/raw-debug.ini
[5495]161
[11254]162[raw_deploy_ini]
[5495]163recipe = collective.recipe.template
[11254]164input = etc/raw/deploy.ini.in
165output = ${buildout:parts-directory}/etc/raw-deploy.ini
[5495]166
[11254]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
[7482]177[profile_ini]
178recipe = collective.recipe.template
179input = etc/profile.ini.in
180output = ${buildout:parts-directory}/etc/profile.ini
181
[5495]182[eggbasket]
183recipe = z3c.recipe.eggbasket
184eggs = grok
185url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
186
187[waeupdocs]
188recipe = collective.recipe.sphinxbuilder
[7808]189eggs = waeup.kofa[docs]
[5495]190source = ${buildout:directory}/docs/source
191build = ${buildout:directory}/docs/build
192
[4789]193# Collect test coverage data.
194[coverage-detect]
195recipe = zc.recipe.testrunner
[7808]196eggs = waeup.kofa[beaker]
[4789]197defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
198
199# Create a coverage report.
200# Make sure to run bin/coverage-detect to collect the data for the report
201# first!
202[coverage-report]
203recipe = zc.recipe.egg
204eggs = z3c.coverage
[5226]205scripts = coveragereport
[13074]206arguments = ('${buildout:parts-directory}/coverage-detect/coverage', '${buildout:directory}/coverage-report')
[11254]207
208[lxml]
209recipe = z3c.recipe.staticlxml
210egg = lxml
211
212[diazo]
213recipe = zc.recipe.egg
214eggs =
215    diazo [wsgi]
216    PasteScript
217    waeup.kofa [beaker,diazo]
Note: See TracBrowser for help on using the repository browser.