Fixed Installation Guide for UI
Change-Id: I4987839c29c87e5ce39341b18400ad62205d7ed4
This commit is contained in:
@@ -2227,7 +2227,7 @@ http://docbook.org/ns/docbook "
|
|||||||
<para>Check out sources to some directory (<home>/murano):</para>
|
<para>Check out sources to some directory (<home>/murano):</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
user@work:~/$ git clone https://github.com/Mirantis/murano-api.git
|
user@work:~/$ git clone https://github.com/stackforge/murano-api.git
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
@@ -2342,7 +2342,7 @@ user@work:~/$ murano-api --config-file=./murano/api/etc/murano-api.conf
|
|||||||
<para>Check out sources to some directory (<home>/murano):</para>
|
<para>Check out sources to some directory (<home>/murano):</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
user@work:~/$ git clone https://github.com/Mirantis/murano-api.git
|
user@work:~/$ git clone https://github.com/stackforge/murano-api.git
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
@@ -2403,7 +2403,6 @@ user@work:~/cd murano/conductor && conductor --config-file=./murano/conductor/et
|
|||||||
<section>
|
<section>
|
||||||
<title>Murano Dashboard</title>
|
<title>Murano Dashboard</title>
|
||||||
<para>Murano Dashboard is a project that provides Web UI to Murano Project.</para>
|
<para>Murano Dashboard is a project that provides Web UI to Murano Project.</para>
|
||||||
<para>This document describes Conductor for contributors of the project.</para>
|
|
||||||
<section>
|
<section>
|
||||||
<title>Install</title>
|
<title>Install</title>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
@@ -2411,17 +2410,18 @@ user@work:~/cd murano/conductor && conductor --config-file=./murano/conductor/et
|
|||||||
<para>Check out sources to some directory (<home>/murano-dashboard):</para>
|
<para>Check out sources to some directory (<home>/murano-dashboard):</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
user@work:~/$ git clone https://github.com/Mirantis/murano-dashboard.git
|
user@work:~/$ git clone https://github.com/stackforge/murano-dashboard.git
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Install virtualenv:</para>
|
<para>Install:</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
user@work:~/$ cd murano-dashboard && sudo python ./tools/install_venv.py
|
user@work:~/$ cd murano-dashboard && sudo python setup.py install
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
<para>Make sure that horizon and python-muranoclient is already installed.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
@@ -2429,30 +2429,28 @@ user@work:~/$ cd murano-dashboard && sudo python ./tools/install_venv.py
|
|||||||
<title>Configure</title>
|
<title>Configure</title>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Copy configuration file from template:</para>
|
<para>Open Django configuration file:</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
user@work:~/$ cp murano-dashboard/muranodashboard/local/local_settings.py.example murano-dashboard/muranodashboard/local/local_settings.py
|
user@work:~/$ cd <Horizon Install Dir> && nano settings.py
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
<para>Please, make sure that no local/local_settings.py file exists.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Open configuration file for editing:</para>
|
<para>Configure:</para>
|
||||||
<programlisting>
|
|
||||||
<![CDATA[
|
|
||||||
user@work:~/$ cd murano-dashboard/muranodashboard/local/ && nano local_settings.py
|
|
||||||
]]>
|
|
||||||
</programlisting>
|
|
||||||
</listitem>
|
|
||||||
<listitem>
|
|
||||||
<para>Configure according to your environment:</para>
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
|
HORIZON_CONFIG = {
|
||||||
...
|
...
|
||||||
SECRET_KEY = 'some_random_value'
|
'customization_module': 'muranodashboard.panel.overrides'
|
||||||
|
}
|
||||||
...
|
...
|
||||||
OPENSTACK_HOST = "localhost"
|
INSTALLED_APPS = (
|
||||||
...
|
...
|
||||||
|
'muranodashboard',
|
||||||
|
...
|
||||||
|
)
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
@@ -2460,10 +2458,10 @@ OPENSTACK_HOST = "localhost"
|
|||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<title>Run</title>
|
<title>Run</title>
|
||||||
<para>Run Murano Dashboard in virtualenv:</para>
|
<para>Run Horizon:</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
user@work:~/$ cd murano-dashboard && sudo ./tools/with_venv.sh python manage.py runserver 0.0.0.0:8080
|
user@work:~/$ cd <Horizon Install Dir> && python manage.py runserver 0.0.0.0:8080
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</section>
|
</section>
|
||||||
|
Reference in New Issue
Block a user