97124316b3
Update the Murano-dashboard docs 1.sections align with text 2.update the end-user url 3.update the git repo Change-Id: I53d805e1f3dadc0007be688ed3aa462f0423d54f
2.1 KiB
2.1 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
Check out sources to some directory (<home>/murano-dashboard):
user@work:~/$ git clone git://git.openstack.org/openstack/murano-dashboard
Install virtualenv:
user@work:~/$ cd murano-dashboard && sudo python ./tools/install_venv.py
Configure
Copy configuration file from template:
user@work:~/$ cp murano-dashboard/muranodashboard/local/local_settings.py.example murano-dashboard/muranodashboard/local/local_settings.py
Open configuration file for editing:
user@work:~/$ cd murano-dashboard/muranodashboard/local/ && nano local_settings.py
Configure according to you environment:
... SECRET_KEY = 'some_random_value' ... OPENSTACK_HOST = "localhost" ...
Run
Run Dashboard in virtualenv:
user@work:~/$ cd murano-dashboard && sudo ./tools/with_venv.sh python manage.py runserver 0.0.0.0:8080