2 Usage - Reference Documentation
Authors: Burt Beckwith
Version: 1.1
2 Usage
UrlMappings
You'll need to configure some URL mappings ingrails-app/conf/UrlMappings.groovy
to match what the client UI expects. You can also customize the URLs so they are separate from the main application URLs, e.g. under /admin/
:"/admin/cfDashboard/$action?"(controller: 'cloudFoundryDashboard')"/admin/cfDashboard/application/$appName"(controller: 'cloudFoundryDashboard', action: 'application')"/admin/cfDashboard/service/$serviceName"(controller: 'cloudFoundryDashboard', action: 'service')"/admin/cfDashboard/files/$appName/$instanceIndex?"(controller: 'cloudFoundryDashboard', action: 'files')
/admin/cfDashboard/
suffix is merely a suggestion - you can use any value there - but the rest of the mappings should stay as shown.Applications
You can access all of your deployed applications from the Cloud Foundry UI plugin pages, not just the one that is hosting it. Navigating tohttp://your-app-name.cloudfoundry.com/admin/cfDashboard
you'll see buttons for each application:

Services
If you click the Services button you'll see some information about each bound service:
Files
If you click the file viewer "View" link from the application view you'll see the file viewer:
