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

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

Replace bootstrap.py and adjust buildout.cfg.

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