RETIRED, UI component for application catalog
Go to file
Kevin Fox 1a1a76cbf3 Disable bundles that have deps that are disabled
See title.

Change-Id: I472b04de9a28f466957bd9d5e85908cc4b4de47c
2015-10-02 08:56:31 -07:00
app_catalog Disable bundles that have deps that are disabled 2015-10-02 08:56:31 -07:00
component_catalog Initial stab at pbr and version passing. 2015-09-03 13:37:08 -07:00
devstack Add devstack plugin bits 2015-09-09 16:18:29 -07:00
enabled Bunch of updates 2015-09-22 11:25:10 -07:00
.gitreview Update .gitreview for project rename 2015-09-11 20:57:49 +00:00
LICENSE Initial stab at a grid layout for apps. 2015-08-20 09:43:00 -07:00
MANIFEST.in More packaging stuff 2015-08-23 15:18:28 -07:00
README.rst Update reference to repo 2015-09-11 17:25:23 -07:00
setup.cfg Dummy change to test versioning 2015-09-14 11:00:38 -07:00
setup.py Dummy change to test versioning 2015-09-14 11:00:38 -07:00

README.rst

app-catalog-ui

This makes the Applications and Components stored in the OpenStack Application Catalog available to users in their own Cloud's Horizon UI.

Requirements

app-catalog-ui is intended to use only on systems running Horizon

How to try this package

With Devstack

Add the following to your Devstack local.conf file

enable_plugin app-catalog-ui https://git.openstack.org/openstack/app-catalog-ui

With Horizon

git clone http://github.com/openstack/horizon.git
git clone http://github.com/openstack/app-catalog-ui.git
cd horizon
./run_tests.sh -f --docs
cp ./openstack_dashboard/local/local_settings.py.example ./openstack_dashboard/local/local_settings.py
pushd ../apps-catalog-ui
../horizon/tools/with_venv.sh pip install --upgrade .
cp -a enabled/* ../horizon/openstack_dashboard/enabled/
popd

#FOR Murano Dashboard support:
git clone http://github.com/openstack/murano-dashboard.git
pushd ../murano-dashboard
../horizon/tools/with_venv.sh pip install --upgrade .
cp muranodashboard/local/_50_murano.py ../horizon/openstack_dashboard/enabled/
popd

#If you want to test against you own app-catalog checkout:
echo "APP_CATALOG_URL='http://localhost:18001'" >> openstack_dashboard/local/local_settings.py

#Start test server
./run_tests.sh --runserver 127.0.0.1:18000