
fixed paths to support new repo layout modified tox file Change-Id: Ibbe087cc4e0ae02b890824b4a559a9dd0c0a0a49
15 lines
391 B
Python
15 lines
391 B
Python
# The name of the dashboard to be added to HORIZON['dashboards']. Required.
|
|
DASHBOARD = 'freezer_ui'
|
|
|
|
# If set to True, this dashboard will not be added to the settings.
|
|
DISABLED = False
|
|
|
|
# Until there is a more elegant SYSPATH var scheme...
|
|
import sys
|
|
sys.path.append('/opt/stack/freezer')
|
|
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
ADD_INSTALLED_APPS = [
|
|
'freezer_ui',
|
|
]
|