-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuildout.cfg
47 lines (39 loc) · 913 Bytes
/
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
[buildout]
develop = .
parts =
test
omelette
instance
extends = http://dist.plone.org/release/5.1-latest/versions.cfg
newest = false
find-links =
http://effbot.org/downloads
extensions = mr.developer
sources = sources
sources-dir = ${buildout:directory}/devsrc
auto-checkout = *
always-checkout = true
[remotes]
bda = git://github.com/bluedynamics
bda_push = [email protected]:bluedynamics
[sources]
node.ext.zodb = git ${remotes:bda}/node.ext.zodb.git pushurl=${remotes:bda_push}/node.ext.zodb.git
[instance]
recipe = plone.recipe.zope2instance
http-address = 8080
user = admin:admin
eggs =
Pillow
plone.reload
plone.app.debugtoolbar
souper.plone
zcml =
souper.plone
[test]
recipe = zc.recipe.testrunner
eggs =
souper.plone[test]
#defaults = ['--coverage', '../../coverage', '-v', '--auto-progress']
[omelette]
recipe = collective.recipe.omelette
eggs = ${test:eggs}