source: products/quintagroup.catalogupdater/trunk/docs/INSTALL.txt @ 2683

Last change on this file since 2683 was 1841, checked in by olha, 14 years ago

Documentation files prepared for initial public release.

  • Property svn:eol-style set to native
File size: 1.4 KB
RevLine 
[1800]1Installation
2============
[1739]3
[1800]4Buildout
5--------
[1739]6
[1800]7To install quintagroup.catalogupdater to your buildout-based project:
[1739]8
[1800]9* Add ``quintagroup.catalogupdater`` to the list of eggs to install::
[1739]10
11    [buildout]
12    ...
13    eggs =
14        ...
15        quintagroup.catalogupdater
16       
[1800]17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
[1739]18
19    [instance]
20    recipe = plone.recipe.zope2instance
21    ...
22    zcml =
23        quintagroup.catalogupdater
24     
[1800]25* Re-run buildout, e.g. with::
[1739]26
27    $ ./bin/buildout
[1800]28   
29* Restart the Zope server, e.g with the following command in the terminal::
30
[1841]31   $ ./bin/instance restart
[1739]32       
[1800]33Traditional Zope 2 instance
34---------------------------
35     
36To install quintagroup.catalogupdater into the global Python environment (or a workingenv),
37using a traditional Zope 2 instance, you can do this:
38
39* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory.
40
41* Create a file called ``quintagroup.catalogupdater-configure.zcml`` in the
42  ``/path/to/instance/etc/package-includes`` directory.  The file
43  should only contain this::
44
45    <include package="quintagroup.catalogupdater" />
46   
47* Restart the Zope server, for example with the following command in the terminal::
48
49   $ ./bin/zopectl restart
50
[1841]51quintagroup.catalogupdater does not require additional installation in Plone - actually it
52is not possible to see that it was installed via Plone interface.
Note: See TracBrowser for help on using the repository browser.