Installation
------------

In the buildout.cfg file of your buildout: 

* add ``quintagroup.theme.techlight`` to the list of eggs to install::

       [buildout]
        ...
       eggs =
           ...
           quintagroup.theme.techlight
   
* Re-run buildout::

    $ ./bin/buildout

* Restart instance::

    $ ./bin/instance restart

* Install ``Techlight Theme`` in Plone (Site Setup -> Add-ons).


Installation: development mode
==============================

If you want to customize Techlight theme please use the following installation instructions: 

* download ``quintagroup.theme.techlight-version.zip`` archive from http://pypi.python.org/pypi/quintagroup.theme.techlight
* extract theme archive to get ``quintagroup.theme.techlight-version`` folder. Remove version from 
  folder name to have ``quintagroup.theme.techlight`` folder
* put ``quintagroup.theme.techlight`` folder into ``src`` directory of your buildout
* in buildout.cfg file of your buildout add ``quintagroup.theme.techlight`` to the list of eggs you are developing and  to the list of eggs to install::

       [buildout]
       ...
       develop = src/quintagroup.theme.techlight
       ...
       eggs =
           ...
           quintagroup.theme.techlight
   
* Re-run buildout::

    $ ./bin/buildout

* Start instance in development mode::

    $ ./bin/instance fg

* Install ``Techlight Theme`` in Plone (Site Setup -> Add-ons).

Now you can customize Techlight Theme by modifying ``quintagroup.theme.techlight`` package in ``src`` directory 
of your buildout.
