source: main/ngren.theme/trunk/buildout.cfg @ 11954

Last change on this file since 11954 was 10538, checked in by uli, 11 years ago

Make default buildout more deployment-like.

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