-
Notifications
You must be signed in to change notification settings - Fork 2
/
plone-development.cfg
110 lines (88 loc) · 2.33 KB
/
plone-development.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
# A buildout base configuration for plone development. Must also extend from
# a test buildout configuration file.
# Parts:
# bin/instance : The zope instance.
# parts/omelette : Omelette with instance and test eggs.
#
# Example usage:
# [buildout]
# extends =
# https://raw.githubusercontent.com/4teamwork/ftw-buildouts/master/test-plone-x.y.z.cfg
# https://raw.githubusercontent.com/4teamwork/ftw-buildouts/master/plone-development.cfg
# package-name = my.package
[buildout]
development-parts =
instance
zopepy
i18n-build
upgrade
omelette
parts +=
${buildout:development-parts}
i18n-domain = ${buildout:package-namespace}
always-checkout = false
dump-picked-versions = true
show-picked-versions = true
zcml-additional-fragments =
instance-early-zcml =
instance-zcml =
instance-eggs =
hotfix-eggs =
environment-vars =
zope_i18n_compile_mo_files true
chameleon-eager = true
chameleon-reload = true
chameleon-recook-warning = true
chameleon-recook-exception = false
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
debug-mode = on
verbose-security = on
blob-storage = var/blobstorage
chameleon-cache = ${buildout:directory}/var/${:_buildout_section_name_}/chameleon-cache
eggs =
Plone
${buildout:package-name}
${buildout:instance-eggs}
${buildout:hotfix-eggs}
plone.reload
collective.z3cinspector
environment-vars = ${buildout:environment-vars}
zcml-additional =
<configure xmlns="http://namespaces.zope.org/zope">
${buildout:zcml-additional-fragments}
</configure>
zcml =
${buildout:instance-early-zcml}
${buildout:instance-zcml}
initialization =
# Import _strptime before starting any threads to avoid race condition.
# See http://bugs.python.org/issue7980
import _strptime
[chameleon-cache]
commands =
cmd = mkdir -p ${instance:chameleon-cache}
[omelette]
# parts/omlette
[omelette]
recipe = collective.recipe.omelette
eggs =
${test:eggs}
${instance:eggs}
[zopepy]
recipe = zc.recipe.egg
eggs =
${instance:eggs}
${test:eggs}
interpreter = zopepy
scripts = zopepy
[i18n-build]
recipe = ftw.recipe.translations:package
package-name = ${buildout:package-name}
i18n-domain = ${buildout:i18n-domain}
package-namespace = ${buildout:package-namespace}
[upgrade]
recipe = zc.recipe.egg:script
eggs = ftw.upgrade