-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
core.cfg
127 lines (100 loc) · 2.31 KB
/
core.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
[buildout]
extends =
# Load versions-extra.cfg first, so it does not override other versions: it is extra.
versions-extra.cfg
bare.cfg
# New in zc.buildout 3.2.0: optionally extend a local (non-git) config file:
optional-extends =
local.cfg
extensions +=
plone.versioncheck
devtool-eggs =
zodbverify
pdbpp
parts +=
instance-cmfplone
robot
zopescripts
zopepy
packages
releaser
z3c_checkversions
ploneversioncheck
dependencies
zodbupdate
vscode
[buildout:windows]
# no plone.releaser under Windows, because its dependency pywin32-ctypes fails to install
parts -=
releaser
# no pdbpp under Windows because buildout fails
devtool-eggs -=
pdbpp
[instance]
eggs +=
${buildout:custom-eggs}
${buildout:devtool-eggs}
environment-vars =
zope_i18n_compile_mo_files true
[instance-cmfplone]
# Separate instance for only Products.CMFPlone
# Some packages you may want to temporarily add locally when testing,
# are plone.app.upgrade and plone.app.caching.
recipe = plone.recipe.zope2instance
user = ${buildout:plone-user}
eggs =
Products.CMFPlone
${buildout:custom-eggs}
[zopescripts]
# generates the Zope and WSGI specific scripts
recipe = zc.recipe.egg
eggs =
Zope
Paste
${instance:eggs}
[zopepy]
recipe = zc.recipe.egg
eggs =
${test:eggs}
interpreter = zopepy
scripts =
# from plone.staticresources:
plone-register-icons
plone-register-flags
[packages]
recipe = collective.recipe.omelette
ignore-develop = False
eggs =
${test:eggs}
[releaser]
recipe = zc.recipe.egg
dependent-scripts = true
eggs =
plone.releaser
zest.releaser[recommended]
zest.pocompile
[z3c_checkversions]
# run this via bin/checkversions -l 2 versions.cfg
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]
[ploneversioncheck]
# use after buildout run, for help: ./bin/versioncheck --help
recipe = zc.recipe.egg
eggs = plone.versioncheck
[dependencies]
recipe = zc.recipe.egg
eggs = z3c.dependencychecker
[zodbupdate]
recipe = zc.recipe.egg
eggs =
zodbupdate
${instance:eggs}
[vscode]
recipe = collective.recipe.vscode
eggs = ${test:eggs}
robot-enabled = true
flake8-enabled = false
black-enabled = true
generate-envfile = true
# We do not want the PyLance language server, because it is no longer supported:
jedi-enabled = true