-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathbuildout.cfg
58 lines (45 loc) · 1.01 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
[buildout]
extends = http://dist.plone.org/release/5.1.4/versions.cfg
show-picked-versions = true
extensions =
mr.developer
parts =
instance
omelette
zopepy
develop = .
auto-checkout =
# mockup
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
Pillow
collective.jstraining
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[zopepy]
recipe = zc.recipe.egg
eggs =
${instance:eggs}
# need to explicitly mention Products.CMFPlone in order for plone-compile-resources to be found
Products.CMFPlone
interpreter = zopepy
scripts =
zopepy
plone-compile-resources
[versions]
# Don't use a released version of collective.jstraining
collective.jstraining =
# development dependencies (tools and pre commit hook)
setuptools =
zc.buildout =
plone.api = >=1.8.4
mr.developer = >=1.38
z3c.jbot = 0.7.2
zc.recipe.egg = 2.0.3
[sources]
mockup = git https://github.com/plone/mockup.git [email protected]:plone/mockup.git