source: main/waeup.plonetheme/trunk/buildout.cfg @ 15395

Last change on this file since 15395 was 13726, checked in by Henrik Bettermann, 9 years ago

Uncomment eggs-directory directive.

File size: 3.3 KB
Line 
1[buildout]
2
3# eggs-directory = /plone/eggs
4
5develop = .
6extends =
7    http://dist.plone.org/release/4.2.4/versions.cfg
8newest = false
9prefer-final = true
10versions = versions
11find-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
17unzip = true
18show-picked-versions = true
19http-address = 0.0.0.0:5000
20eggs =
21    Plone
22    Pillow
23    diazotheme.bootstrap
24    waeup.plonetheme
25    Products.LinguaPlone
26    sc.social.like
27    collective.blogging
28    plone.app.ldap
29debug-mode = off
30# Add-on developers should turn deprecation warnings on
31deprecation-warnings = off
32# change verbose-security to "on" for useful security errors while developing
33verbose-security = off
34user=admin:admin
35environment-vars =
36    zope_i18n_compile_mo_files true
37    PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs
38    PYTHONHASHSEED random
39parts =
40    instance
41    zopepy
42    productsdir
43    python-ldap
44
45#    zopeskel
46#    unifiedinstaller
47#    repozo
48#    backup
49#    chown
50
51effective-user =
52
53[productsdir]
54# create a products dir in buildout root
55recipe = z3c.recipe.mkdir
56paths = 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
62recipe = plone.recipe.zope2instance
63# The line below sets only the initial password. It will not change an
64# existing password.
65user = ${buildout:user}
66http-address = ${buildout:http-address}
67# if we try to start as root, Zope will switch to the user below
68effective-user = ${buildout:effective-user}
69# change debug-mode to "on" to run in development mode
70debug-mode = ${buildout:debug-mode}
71# change verbose-security to "on" for detailed security
72# errors while developing
73verbose-security = ${buildout:verbose-security}
74# change deprecation-warnings to "on" to get log warnings
75# for deprecated usages.
76deprecation-warnings = ${buildout:deprecation-warnings}
77blob-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.
81event-log-max-size = 5 MB
82event-log-old-files = 5
83access-log-max-size = 20 MB
84access-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
88eggs =
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
93zcml = ${buildout:zcml}
94
95products = ${buildout:directory}/products
96
97# You may also control the environment variables for the instance.
98environment-vars = ${buildout:environment-vars}
99zcml =
100
101
102[zopepy]
103# installs a zopepy python interpreter that runs with your
104# full Zope environment
105recipe = zc.recipe.egg
106eggs = ${buildout:eggs}
107interpreter = zopepy
108scripts = zopepy
109
110
111
112[zopeskel]
113# installs paster and Zopeskel
114recipe = zc.recipe.egg
115eggs =
116    ZopeSkel
117    Paste
118    PasteDeploy
119    PasteScript
120    ${buildout:eggs}
121
122[versions]
123ZopeSkel = 2.21.2
124plone.recipe.unifiedinstaller = 4.1
125lxml = 2.3.6
126Cheetah = 2.2.1
127Pillow = 1.7.8
128Products.DocFinderTab = 1.0.5
129collective.recipe.backup = 2.8
130plone.recipe.command = 1.1
131z3c.recipe.mkdir = 0.3.1
132
133[python-ldap]
134recipe = zc.recipe.egg:custom
135egg = python-ldap
136find-links =
137include-dirs = /usr/include /usr/lib/sasl2
138library-dirs = /usr/lib
Note: See TracBrowser for help on using the repository browser.