-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
60 lines (47 loc) · 1.19 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
[buildout]
# specify PyPI index
index = https://pypi.org/simple/
# Don't download new things unless needed to satisfy dependencies.
# Override this on the command line with the "-n" flag.
newest = false
# pick final releases over newer development releases
prefer-final = true
show-picked-versions = true
extends =
http://dist.plone.org/release/5.2.4/versions.cfg
settings.cfg
products.cfg
sources.cfg
parts =
instance
mrbob
extensions =
mr.developer
sources = sources
auto-checkout =
*
[instance]
recipe = plone.recipe.zope2instance
user = ${users:user}:${users:password}
effective-user = ${users:effective-user}
http-address = ${hosts:instance}:${ports:instance}
debug-mode = on
verbose-security = on
blob-storage = ${blobstorage:directory}
shared-blob = on
environment-vars =
TMPDIR ${tmp:directory}
TMP ${tmp:directory}
TEMP ${tmp:directory}
PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs
PTS_LANGUAGES en, pt-br
zope_i18n_allowed_languages en, pt_BR
JPEG_ROOT /usr/local/lib/
LD_LIBRARY_PATH /usr/local/lib/
eggs = ${buildout:eggs}
zcml = ${buildout:zcml}
[mrbob]
recipe = zc.recipe.egg
eggs =
mr.bob
bobtemplates.plone