1 | [buildout] |
---|
2 | |
---|
3 | # eggs-directory = /plone/eggs |
---|
4 | |
---|
5 | develop = . |
---|
6 | extends = |
---|
7 | http://dist.plone.org/release/4.2.4/versions.cfg |
---|
8 | newest = false |
---|
9 | prefer-final = true |
---|
10 | versions = versions |
---|
11 | find-links = |
---|
12 | http://dist.plone.org/release/4.2.4 |
---|
13 | http://dist.plone.org |
---|
14 | http://download.zope.org/ppix/ |
---|
15 | http://download.zope.org/distribution/ |
---|
16 | http://effbot.org/downloads |
---|
17 | unzip = true |
---|
18 | show-picked-versions = true |
---|
19 | http-address = 0.0.0.0:5000 |
---|
20 | eggs = |
---|
21 | Plone |
---|
22 | Pillow |
---|
23 | diazotheme.bootstrap |
---|
24 | waeup.plonetheme |
---|
25 | Products.LinguaPlone |
---|
26 | sc.social.like |
---|
27 | collective.blogging |
---|
28 | plone.app.ldap |
---|
29 | debug-mode = off |
---|
30 | # Add-on developers should turn deprecation warnings on |
---|
31 | deprecation-warnings = off |
---|
32 | # change verbose-security to "on" for useful security errors while developing |
---|
33 | verbose-security = off |
---|
34 | user=admin:admin |
---|
35 | environment-vars = |
---|
36 | zope_i18n_compile_mo_files true |
---|
37 | PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs |
---|
38 | PYTHONHASHSEED random |
---|
39 | parts = |
---|
40 | instance |
---|
41 | zopepy |
---|
42 | productsdir |
---|
43 | python-ldap |
---|
44 | |
---|
45 | # zopeskel |
---|
46 | # unifiedinstaller |
---|
47 | # repozo |
---|
48 | # backup |
---|
49 | # chown |
---|
50 | |
---|
51 | effective-user = |
---|
52 | |
---|
53 | [productsdir] |
---|
54 | # create a products dir in buildout root |
---|
55 | recipe = z3c.recipe.mkdir |
---|
56 | paths = products |
---|
57 | |
---|
58 | [instance] |
---|
59 | # Use this section to install and configure a Zope operating |
---|
60 | # instance. |
---|
61 | # For options see http://pypi.python.org/pypi/plone.recipe.zope2instance |
---|
62 | recipe = plone.recipe.zope2instance |
---|
63 | # The line below sets only the initial password. It will not change an |
---|
64 | # existing password. |
---|
65 | user = ${buildout:user} |
---|
66 | http-address = ${buildout:http-address} |
---|
67 | # if we try to start as root, Zope will switch to the user below |
---|
68 | effective-user = ${buildout:effective-user} |
---|
69 | # change debug-mode to "on" to run in development mode |
---|
70 | debug-mode = ${buildout:debug-mode} |
---|
71 | # change verbose-security to "on" for detailed security |
---|
72 | # errors while developing |
---|
73 | verbose-security = ${buildout:verbose-security} |
---|
74 | # change deprecation-warnings to "on" to get log warnings |
---|
75 | # for deprecated usages. |
---|
76 | deprecation-warnings = ${buildout:deprecation-warnings} |
---|
77 | blob-storage = ${buildout:directory}/var/blobstorage |
---|
78 | |
---|
79 | # Comment the next four lines out if you don't need |
---|
80 | # automatic log rotation for event and access logs. |
---|
81 | event-log-max-size = 5 MB |
---|
82 | event-log-old-files = 5 |
---|
83 | access-log-max-size = 20 MB |
---|
84 | access-log-old-files = 5 |
---|
85 | |
---|
86 | # If you want Zope to know about any additional eggs, list them here. |
---|
87 | # e.g. eggs = ${buildout:eggs} my.package |
---|
88 | eggs = |
---|
89 | ${buildout:eggs} |
---|
90 | |
---|
91 | # If you want to register ZCML slugs for any packages, list them here. |
---|
92 | # e.g. zcml = my.package my.other.package |
---|
93 | zcml = ${buildout:zcml} |
---|
94 | |
---|
95 | products = ${buildout:directory}/products |
---|
96 | |
---|
97 | # You may also control the environment variables for the instance. |
---|
98 | environment-vars = ${buildout:environment-vars} |
---|
99 | zcml = |
---|
100 | |
---|
101 | |
---|
102 | [zopepy] |
---|
103 | # installs a zopepy python interpreter that runs with your |
---|
104 | # full Zope environment |
---|
105 | recipe = zc.recipe.egg |
---|
106 | eggs = ${buildout:eggs} |
---|
107 | interpreter = zopepy |
---|
108 | scripts = zopepy |
---|
109 | |
---|
110 | |
---|
111 | |
---|
112 | [zopeskel] |
---|
113 | # installs paster and Zopeskel |
---|
114 | recipe = zc.recipe.egg |
---|
115 | eggs = |
---|
116 | ZopeSkel |
---|
117 | Paste |
---|
118 | PasteDeploy |
---|
119 | PasteScript |
---|
120 | ${buildout:eggs} |
---|
121 | |
---|
122 | [versions] |
---|
123 | ZopeSkel = 2.21.2 |
---|
124 | plone.recipe.unifiedinstaller = 4.1 |
---|
125 | lxml = 2.3.6 |
---|
126 | Cheetah = 2.2.1 |
---|
127 | Pillow = 1.7.8 |
---|
128 | Products.DocFinderTab = 1.0.5 |
---|
129 | collective.recipe.backup = 2.8 |
---|
130 | plone.recipe.command = 1.1 |
---|
131 | z3c.recipe.mkdir = 0.3.1 |
---|
132 | |
---|
133 | [python-ldap] |
---|
134 | recipe = zc.recipe.egg:custom |
---|
135 | egg = python-ldap |
---|
136 | find-links = |
---|
137 | include-dirs = /usr/include /usr/lib/sasl2 |
---|
138 | library-dirs = /usr/lib |
---|