
One of suggestions discussed in the mailling thread [1] is to decouple linters from test-requirements.txt. We uses specific versions of linters (hacking, flake8, pylint and bandit) and they are potentially incompatbile with other libraries in test-requirements.txt. One example is bandit incompatibility detected by the new pip resolver. This commit moves linters to tox.ini and introduces a new tox envdir shared by linter related tox envs. Note that we have a unit test for a local hacking rule so hacking needs to be installed as part of the default dependencies. We can have it in test-requirements.txt but I think it is better to have it in tox.ini as hacking is a part of linters and other linter dependencies are declared in tox.ini now. [1] http://lists.openstack.org/pipermail/openstack-discuss/2020-December/thread.html#19362 Change-Id: Ia41c5f665f01bdab187c9256b2319885998d12c3
Horizon (OpenStack Dashboard)
Horizon is a Django-based project aimed at providing a complete
OpenStack Dashboard along with an extensible framework for building new
dashboards from reusable components. The
openstack_dashboard
module is a reference implementation of
a Django site that uses the horizon
app to provide
web-based interactions with the various OpenStack projects.
- Project documentation: https://docs.openstack.org/horizon/latest/
- Release management: https://launchpad.net/horizon
- Blueprints and feature specifications: https://blueprints.launchpad.net/horizon
- Issue tracking: https://bugs.launchpad.net/horizon
- Release notes: https://docs.openstack.org/releasenotes/horizon/
Using Horizon
See doc/source/install/index.rst
about how to install
Horizon in your OpenStack setup. It describes the example steps and has
pointers for more detailed settings and configurations.
It is also available at Installation Guide.
Getting Started for Developers
doc/source/quickstart.rst
or Quickstart
Guide describes how to setup Horizon development environment and
start development.
Building Contributor Documentation
This documentation is written by contributors, for contributors.
The source is maintained in the doc/source
directory
using reStructuredText and
built by Sphinx
To build the docs, use:
$ tox -e docs
Results are in the doc/build/html
directory