
Now a running Horizon instance is required to run Mistral Workbook builder. Instructions on integrating Merlin and its extensions (the first of which is Workbook Builder) are provided in README.md. Change-Id: I599ac46c9fd5369e42722b8d7a01d60c9f3323b8
12 lines
399 B
Python
12 lines
399 B
Python
# The name of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'mistral'
|
|
# The name of the dashboard the PANEL associated with. Required.
|
|
PANEL_DASHBOARD = 'project'
|
|
# The name of the panel group the PANEL is associated with.
|
|
PANEL_GROUP = 'orchestration'
|
|
|
|
ADD_INSTALLED_APPS = ['merlin', 'mistral']
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = 'mistral.panel.MistralPanel'
|