CF WebUI is a modern single-page web-frontend for Cloud Foundry based on AngularJS and Bootstrap.
Cloud Foundry is the OpenSource Platform as a Service (PaaS) Framework on which many PaaS offerings are based (e.g. Pivotal Web Services, HP Helion, IBM BlueMix, Swisscom Application Cloud, etc.). It allows the developers to provide, manage and scale their application in the cloud very easily and quickly. For end-users Cloud Foundry provides a REST based API and a command line interface (CLI) client. No official free and open source web front-end is currently available.
1. Clone the project: git clone https://github.com/icclab/cf-webui
<br>
2. Change directory to cf-webUI: cd cf-webUI
<br>
3. Change the manifest.yml
to your options and the endpoint to your desired Cloud Foundry instance. E.g.: <br>
---
applications:
- name: cf-webui
memory: 128M
host: console-cf-webui-${random-word}
path: ./build
buildpack: staticfile_buildpack
env:
API_ENDPOINT: https://api.run.pivotal.io
# Use Google DNS by default
NGINX_RESOLVER: 8.8.8.8
#Enforce https is used (using x_forwarded_proto check) .Default: enabled
FORCE_HTTPS: 1
4. Install npm packages: npm install
<br>
5. Build the application using Grunt: grunt build
<br>
6. Push this application to Cloud Foundry using the cf Command Line Interface (CLI): cf push
.<br>
7. Enjoy the CF WebUI!<br>
The current version is an early release (alpha). It is not yet production-ready. Some features are still to come and it may contain major bugs.
Please report bugs and request features using GitHub Issues. For additional information, you can contact the maintainer directly.
Community discussions about CF-WebUI happen in the CF-WebUI-discuss mailing list. Once you subscribe to the list, you can send mail to the list address: [email protected]. The mailing list archives are also available on the web.
Please follow the ICCLab blog for updates.
CF-WebUI is licensed under the Apache License version 2.0. See the LICENSE file.