Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Documentation on writing buildout recipes [closed]

I am trying to find tutorials on how to write buildout recipes. I haven't found any, except the one on buildout site. But it is very rudimentary. Is there a good tutorial for writing buildout recipes?

like image 984
roopesh Avatar asked May 25 '10 04:05

roopesh


1 Answers

http://pypi.python.org/pypi/ZopeSkel/ has a template for a buildout recipe. That at least gets you started regarding having a skeleton for adding your own code.

http://pypi.python.org/pypi/zc.buildout#id1 has some information on which methods you need to implement.

Best way to learn it is by looking at an existing recipe to see how it gets done. I'd suggest my own recipe :-) :

https://svn.plone.org/svn/collective/buildout/collective.recipe.backup/trunk/

like image 71
Reinout van Rees Avatar answered Oct 03 '22 20:10

Reinout van Rees