Mistral Horizon plugin.
28bde7a230
Also: - add license headers - set up tox for flake8 checks and venv - remove run_tests.sh, tools/ and other stuff we don't need at the moment - add basic sphinx setup for later use Change-Id: I0d34fb9fd0bfd351d20474da88715b30ff3c3d61 |
||
---|---|---|
doc/source | ||
mistraldashboard | ||
.gitignore | ||
.gitreview | ||
LICENSE | ||
manage.py | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tox.ini |
Mistral Dashboard
Horizon plugin for Mistral.
Setup Instructions
The following should get you started:
$ git clone https://github.com/stackforge/mistral-dashboard.git
$ cd mistral-dashboard
$ cp mistraldashboard/local/local_settings.py.example \
mistraldashboard/local/local_settings.py
Edit the local_settings.py
file as needed. Make sure you
have changed OPENSTACK_HOST to point to your keystone server and also
check all endpoints are accessible. You may want to change
OPENSTACK_ENDPOINT_TYPE to "publicURL" if some of your endpoints are
inaccessible.
You may also need to add a service and endpoints to keystone:
$ MISTRAL_URL="http://[host]:[port]/v1"
$ keystone service-create --name mistral --type workflow
$ keystone endpoint-create --service_id mistral --publicurl $MISTRAL_URL \
--adminurl $MISTRAL_URL --internalurl $MISTRAL_URL
When you're ready to run the development server:
$ tox -evenv -- python manage.py runserver