murano-dashboard/doc/source/index.rst

2.0 KiB

Welcome to Dashboard, the Murano Project Web UI!

Dashboard is a project that provides Web UI to Murano Project.

This document describes Murano Dashboard for contributors of the project, and assumes that you are already familiar with Murano from an end-user perspective.

This documentation is generated by the Sphinx toolkit and lives in the source tree.

Installation Guide

Install

  1. Check out sources to some directory (<home>/murano-dashboard):

    user@work:~/$ git clone https://opendev.org/openstack/murano-dashboard
  2. Install virtualenv:

    user@work:~/$ cd murano-dashboard && tox -evenv

Configure

  1. Copy configuration file from template:

    user@work:~/$ cp murano-dashboard/muranodashboard/local/local_settings.py.example murano-dashboard/muranodashboard/local/local_settings.py
  2. Open configuration file for editing:

    user@work:~/$ cd murano-dashboard/muranodashboard/local/ && nano local_settings.py
  3. Configure according to you environment:

    ...
    SECRET_KEY = 'some_random_value'
    ...
    OPENSTACK_HOST = "localhost"
    ...

Run

Run Dashboard in virtualenv:

user@work:~/$ cd murano-dashboard && source .tox/bin/activate && python manage.py runserver 0.0.0.0:8080