Metadata-Version: 2.4
Name: tacker-horizon
Version: 13.0.0
Summary: Tacker extension for Horizon
Home-page: https://docs.openstack.org/tacker-horizon/latest/
Author: OpenStack
Author-email: openstack-discuss@lists.openstack.org
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
License-File: LICENSE
Requires-Dist: Django>=4.2.23
Requires-Dist: oslo.log>=7.2.0
Requires-Dist: oslo.serialization>=5.7.0
Requires-Dist: pbr>=6.0.0
Requires-Dist: python-tackerclient>=2.3.0
Requires-Dist: horizon>=25.4.0
Dynamic: author
Dynamic: author-email
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

========================
Team and repository tags
========================

.. image:: https://governance.openstack.org/tc/badges/tacker-horizon.svg
          :target: https://governance.openstack.org/tc/reference/tags/index.html

.. Change things from this point on

Tacker Horizon UI
=================

Horizon UI for Tacker VNF Manager

* License: Apache license
* Source: https://opendev.org/openstack/tacker-horizon
* Bugs: https://bugs.launchpad.net/tacker
* Tacker-horizon docs: https://docs.openstack.org/tacker-horizon/latest/

Installation
============

**Note:** The paths we are using for configuration files in these steps
are with reference to Ubuntu Operating System. The paths may vary for
other Operating Systems.

The branch_name which is used in commands, specify the branch_name
as stable/<branch> for any stable branch installation. For eg:
stable/queens, stable/pike. If unspecified the default will be
master branch. The installation of tacker-horizon is as following
steps.

Clone tacker-horizon repository.
   ::

     cd ~/
     git clone https://opendev.org/openstack/tacker-horizon -b <branch_name>

Install horizon module.
   ::

     cd tacker-horizon
     sudo python setup.py install

Enable tacker horizon in dashboard.
   ::

     sudo cp tacker_horizon/enabled/* \
         /opt/stack/horizon/openstack_dashboard/enabled/

Collect and compress static files.
   ::

     ./manage.py collectstatic --noinput
     echo yes | ./manage.py compress

Restart Apache server using Upstart.
   ::

     sudo service apache2 restart

Or restart Apache server using Systemd.
   ::

     sudo systemctl restart apache2

