add murano dashboard
diff --git a/horizon/files/enabled/murano_dashboard.py b/horizon/files/enabled/murano_dashboard.py
index e69de29..80d89e7 100644
--- a/horizon/files/enabled/murano_dashboard.py
+++ b/horizon/files/enabled/murano_dashboard.py
@@ -0,0 +1,23 @@
+from muranodashboard import exceptions
+
+# The name of the dashboard to be added to HORIZON['dashboards']. Required.
+DASHBOARD = 'murano'
+
+# If set to True, this dashboard will not be added to the settings.
+DISABLED = False
+
+ADD_INSTALLED_APPS = [
+ 'muranodashboard',
+]
+
+ADD_EXCEPTIONS = {
+ 'recoverable': exceptions.RECOVERABLE,
+ 'not_found': exceptions.NOT_FOUND,
+ 'unauthorized': exceptions.UNAUTHORIZED,
+}
+
+ADD_JS_FILES = [
+ 'muranodashboard/js/murano.service.js',
+ 'muranodashboard/js/upload_form.js',
+ 'muranodashboard/js/import_bundle_form.js',
+]
diff --git a/horizon/files/horizon_settings/_local_settings.py b/horizon/files/horizon_settings/_local_settings.py
index 1288882..3ac6cbe 100644
--- a/horizon/files/horizon_settings/_local_settings.py
+++ b/horizon/files/horizon_settings/_local_settings.py
@@ -107,6 +107,10 @@
AUTHENTICATION_BACKENDS = ('csb_auth.backend.CSBackend',)
{%- endif %}
+{%- if app.murano_api is defined %}
+MURANO_API_URL = "http://{{ app.murano_api.host }}:{{ app.murano_api.port }}"
+{%- endif %}
+
{%- if app.helpdesk_api is defined %}
HELPDESK_HOST = '{{ app.helpdesk_api.host }}'
HELPDESK_PORT = '{{ app.helpdesk_api.port }}'