source: products/quintagroup.blog.star/trunk/docs/INSTALL.txt @ 2636

Last change on this file since 2636 was 2636, checked in by mylan, 14 years ago

Initial import

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1quintagroup.blog.star Installation
2=======================
3
4 * When you're reading this you have probably already run
5   ``easy_install quintagroup.blog.star``. Find out how to install setuptools
6   (and EasyInstall) here:
7   http://peak.telecommunity.com/DevCenter/EasyInstall
8
9 * Get `pythonproducts`_ and install it via::
10
11       python setup.py install --home /path/to/instance
12
13   into your Zope instance.
14
15 * Create a file called ``quintagroup.blog.star-configure.zcml`` in the
16   ``/path/to/instance/etc/package-includes`` directory.  The file
17   should only contain this::
18
19       <include package="quintagroup.blog.star" />
20
21.. _pythonproducts: http://plone.org/products/pythonproducts
22
23Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
24recipe to manage your project, you can do this:
25
26 * Add ``quintagroup.blog.star`` to the list of eggs to install, e.g.:
27
28    [buildout]
29    ...
30    eggs =
31        ...
32        quintagroup.blog.star
33
34  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
35
36    [instance]
37    recipe = plone.recipe.zope2instance
38    ...
39    zcml =
40        quintagroup.blog.star
41
42  * Re-run buildout, e.g. with:
43
44    $ ./bin/buildout
45
46You can skip the ZCML slug if you are going to explicitly include the package
47from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.