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

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

dic files updated.

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