root/plone4bio.buildout/trunk/development.cfg

Revision 204, 2.2 KB (checked in by mauro, 7 months ago)

* mr.developer
* plone 4.1

Line 
1[buildout]
2extensions += mr.developer
3extends = config/plone4.cfg
4parts +=
5    omelette
6    pydev
7    idelauncher
8#    roadrunner
9    pyflakes
10eggs +=
11    psycopg2
12    MySQL-python
13
14[instance]
15user = admin:admin
16debug-mode = on
17verbose-security = on
18eggs +=
19    plone4bio.base
20#     plone4bio.structure
21    plone4biotheme.base
22    plone4bio.biosql
23    plone4bio.pscoils
24    redturtle.bent
25    plone.reload
26    ZopeHealthWatcher
27#   Products.PDBDebugMode
28# TODO: z3c.autoinclude
29zcml +=
30    plone.reload
31    plone4bio.base
32#     plone4bio.structure
33    plone4biotheme.base
34    plone4bio.biosql
35    plone4bio.pscoils
36
37[omelette]
38recipe = collective.recipe.omelette
39eggs = ${instance:eggs}
40# products = ${instance:products}
41
42# Automatically add eggs to PyDev project path
43[pydev]
44recipe = pb.recipes.pydev
45pydevproject_path =    ${buildout:directory}/.pydevproject
46eggs = ${instance:eggs}
47# extra_paths = ${zope2:location}/lib/python/
48
49[idelauncher]
50recipe = plone.recipe.command
51command =
52    wget -O ${buildout:directory}/bin/idelauncher.py http://plone.org/documentation/tutorial/developing-plone-with-eclipse/idelauncher.py
53# update-command = ${idelauncher:command}
54
55[plonesite]
56recipe = collective.recipe.plonesite
57site-id = plone4bio
58instance = instance
59site-replace = False
60products =
61    plone4bio.base
62#     plone4bio.structure
63    plone4biotheme.base
64    plone4bio.biosql
65    plone4bio.pscoils
66
67#[roadrunner]
68#recipe = roadrunner:plone
69#packages-under-test = ${plone4bio:eggs}
70
71[pyflakes]
72recipe = zc.recipe.egg
73scripts =
74   pyflakes
75eggs =
76   pyflakes
77   setuptools
78entry-points = pyflakes=pkg_resources:run_script
79arguments = 'pyflakes', 'pyflakes'
80initialization =
81    sys.argv += """${buildout:develop}""".split()
82
83[sources]
84plone4bio.base = svn http://plone4bio.org/svn/plone4bio.base/trunk
85plone4bio.biosql = svn http://plone4bio.org/svn/plone4bio.biosql/trunk
86plone4biotheme.base = svn http://plone4bio.org/svn/plone4biotheme.base/trunk
87biocomp.pscoils = svn http://plone4bio.org/svn/biocomp.pscoils/branches/biopython-enabled biocomp.pscoils
88plone4bio.pscoils = svn http://plone4bio.org/svn/plone4bio.pscoils/trunk
89# plone4bio.structure = svn http://plone4bio.org/svn/plone4bio.structure/trunk
Note: See TracBrowser for help on using the browser.