-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
89 lines (72 loc) · 1.69 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
[buildout]
package-name = rer.groupware.star
parts =
instance
zopepy
i18ndude
zopeskel
test
omelette
extends =
http://dist.plone.org/release/5.2.6/versions.cfg
sources.cfg
# Add additional egg download sources here. dist.plone.org contains archives
# of Plone packages.
find-links =
http://dist.plone.org/release/5.2.6
http://dist.plone.org/thirdparty
extensions =
mr.developer
sources = sources
versions = versions
# Create bin/instance command to manage Zope start up and shutdown
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
debug-mode = off
verbose-security = on
blob-storage = var/blobstorage
environment-vars =
zope_i18n_compile_mo_files true
eggs =
Pillow
Plone
plone.reload
Products.PrintingMailHost
rer.groupware.star
zcml =
rer.groupware.room:room-events.zcml
# zopepy commands allows you to execute Python scripts using a PYTHONPATH
# including all the configured eggs
[zopepy]
recipe = zc.recipe.egg
eggs = ${instance:eggs}
interpreter = zopepy
scripts = zopepy
# create bin/i18ndude command
[i18ndude]
unzip = true
recipe = zc.recipe.egg
eggs = i18ndude
# create bin/test command
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
${instance:eggs}
# create ZopeSkel and paster commands with dexterity support
[zopeskel]
recipe = zc.recipe.egg
eggs =
ZopeSkel
PasteScript
zopeskel.dexterity
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
# Version pindowns for new style products go here - this section extends one
# provided in http://dist.plone.org/release/
[versions]
ZopeSkel = 2.21.2
zc.buildout = 2.13.3