-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuildout.cfg
218 lines (188 loc) · 4.59 KB
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
[buildout]
extends =
http://dist.plone.org/release/4.3/versions.cfg
extensions = mr.developer
parts =
zeo
instance
test
coverage
report
report-html
nginx
frontend
ejabberd.cfg
ejabberd
supervisor-conf
supervisor
zopeskel
omelette
sphinx
eggs =
Twisted
collective.xmpp.core
develop =
.
src/collective.loremipsum
src/collective.xmpp.collaboration
src/collective.xmpp.core
src/plone.act
show-picked-versions = true
update-versions-file = new-picked-versions.cfg
auto-checkout =
collective.loremipsum
collective.xmpp.collaboration
collective.xmpp.core
plone.act
rod.recipe.ejabberd
wokkel
versions = versions
[versions]
Sphinx = 1.2b3
BeautifulSoup = 3.2.0
Twisted = 13.1.0
collective.xmltestreport = 1.3.0
coverage = 3.4
gocept.cmmi = 0.9.4
gocept.download = 0.9.5
gocept.nginx = 0.9.4
meld3 = 0.6.7
plone.app.testing = 4.2.2
rod.recipe.ejabberd =
wokkel = 0.7.1
[sources]
collective.loremipsum = git https://github.com/collective/collective.loremipsum.git
collective.xmpp.collaboration = git https://github.com/collective/collective.xmpp.collaboration.git
collective.xmpp.core = git https://github.com/collective/collective.xmpp.core.git
ejabberd-modules = svn https://svn.process-one.net/ejabberd-modules
plone.act = git https://github.com/plone/plone.act.git
rod.recipe.ejabberd = git [email protected]:jcbrand/rod.recipe.ejabberd.git
wokkel = git https://github.com/ggozad/wokkel.git
[zeo]
recipe = plone.recipe.zeoserver
zeo-address = 8980
[instance-settings]
recipe = plone.recipe.zope2instance
zeo-address = ${zeo:zeo-address}
zeo-client = on
shared-blob = on
user = admin:admin
eggs =
${buildout:eggs}
[instance]
<= instance-settings
user = admin:admin
http-address = 8082
zserver-threads = 2
debug-mode = on
verbose-security = on
eggs =
Plone
PIL
Products.PDBDebugMode
collective.xmpp.chat
collective.xmpp.collaboration [dexterity]
collective.xmpp.core
collective.loremipsum
zcml-additional =
<configure xmlns="http://namespaces.zope.org/zope">
<include package="collective.xmpp.core" file="reactor.zcml" />
<include package="collective.xmpp.collaboration" file="component.zcml" />
</configure>
[ejabberd]
recipe = rod.recipe.ejabberd
erlang-path = /usr/bin/
enable-odbc = true
url = http://www.process-one.net/downloads/ejabberd/2.1.11/ejabberd-2.1.11.tgz
[ejabberd.cfg]
recipe = collective.recipe.template
input = templates/ejabberd.cfg.in
output = ${buildout:directory}/etc/ejabberd.cfg
xmppdomain = dev.box
pubsub_max_items_node = 1000
admin_userid = admin
collaboration_allowed_subnet = 0,0,0,0
collaboration_port = 5347
component_password = secret
[test]
recipe = zc.recipe.testrunner
eggs =
collective.loremipsum
plone.namedfile # Requied by TinyMCE
collective.xmpp.core [test]
collective.xmpp.collaboration [test]
collective.xmpp.chat [test]
defaults = ['-v', '--exit-with-status', '--auto-color', '--auto-progress']
[coverage]
recipe = zc.recipe.egg
eggs = coverage
initialization =
source = '--source=${buildout:directory}/src'
sys.argv = sys.argv[:] + ['run', source, 'bin/test', '--all', '-k', '--xml']
[report]
recipe = zc.recipe.egg
eggs = coverage
scripts = coverage=report
initialization =
sys.argv = sys.argv[:] + ['xml', '-i']
[report-html]
recipe = zc.recipe.egg
eggs = coverage
scripts = coverage=report-html
initialization =
sys.argv = sys.argv[:] + ['html', '-i']
[nginx]
recipe = gocept.cmmi
url = http://nginx.org/download/nginx-1.0.8.tar.gz
md5sum = 1049e5fc6e80339f6ba8668fadfb75f9
[frontend]
recipe = gocept.nginx
configuration =
worker_processes 1;
daemon off;
events {
worker_connections 1024;
}
http {
server {
listen 8081;
server_name dev.box;
location ~ ^/http-bind {
proxy_pass http://dev.box:5280;
}
location / {
proxy_pass http://dev.box:8082/VirtualHostBase/http/dev.box:8081/Plone/VirtualHostRoot/;
}
}
}
[supervisor]
recipe = zc.recipe.egg
eggs = supervisor
[supervisor-conf]
recipe = collective.recipe.template
input = ${buildout:directory}/templates/supervisord.conf.in
output = ${buildout:directory}/etc/supervisord.conf
[zopeskel]
recipe = zc.recipe.egg
eggs =
ZopeSkel < 3.0a1
Paste
PasteDeploy
PasteScript
zopeskel.dexterity
zopeskel.browserlayer
${buildout:eggs}
[omelette]
recipe = collective.recipe.omelette
eggs =
${test:eggs}
${instance:eggs}
${zopeskel:eggs}
[sphinx]
recipe = zc.recipe.egg
eggs =
collective.xmpp.chat [sphinx]
sphinx
PIL
scripts =
sphinx-build