source: main/kofacustom.coewarri/trunk/buildout.cfg @ 17159

Last change on this file since 17159 was 15815, checked in by Henrik Bettermann, 5 years ago

Disable XMLRPC User1

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