Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/springerpe/cf_buildpack_dashboard
A dashboard to visualise Cloudfoundry buildpacks usage
https://github.com/springerpe/cf_buildpack_dashboard
Last synced: 6 days ago
JSON representation
A dashboard to visualise Cloudfoundry buildpacks usage
- Host: GitHub
- URL: https://github.com/springerpe/cf_buildpack_dashboard
- Owner: SpringerPE
- Created: 2018-03-20T15:18:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-25T15:09:15.000Z (over 1 year ago)
- Last Synced: 2024-11-14T11:41:45.995Z (2 months ago)
- Language: JavaScript
- Size: 7.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CF Buildpack Dashboard
## Dependencies
In order to run this application you need the [cf-light-api](https://github.com/SpringerPE/cf-light-api) running at
a known endpoint.
Each `cf-light-api` endpoint needs to be provided as a value by populating the `CF_BUILDPACK_DASHBOARD_ENVIRONMENT` env
variable.## Configuration
The `cf_buildpack_dashboard` application accepts the following configuration parameters passed
by env variables:- `CF_BUILDPACK_DASHBOARD_ENVIRONMENT`: a json dictionary mapping different environments to their api endpoints. For example ```{"test": "http://cf-light-api-test.example.com", "prod": "https:cf-light-api-prod.example.com"}```
- `PORT`: the port to which the application binds. If running in Cloudfoundry it will be provided by the platform.## Building for pip
To build the `tar.gz` pip package simply run: ```python setup.py sdist```
from the project root directory.## Building the frontend
```
cd {PROJECT_ROOT}/api/static/js/custom
browserify dashboard.js dashboard-browserified.js
```## Installing and Running
### Pip install
You can install the application from `pypi.org` by running `pip install cf_buildpack_dashboard`. This will install an
executable script that you can call directly `cf_buildpack_dashboard`### Cloudfoundry manifest
You can target as well a Cloudfoundry installation by providing a manifest as in the following example:```
applications:
- name: cf-buildpack-dashboard
instances: 1
memory: 256MB
command: ./run_app.py
env:
CF_BUILDPACK_DASHBOARD_ENVIRONMENTS: '{
"test": "https://cf-api.test.example.com",
"dev": "https://cf-api.dev.example.com",
"live": "https://cf-api.live.example.com"
}'```
and push with `cf push`### Provided script
The application can also be run as a simple python application by installing the
requirements and using the provided `run_app.py` script.## Running the tests
For the backend tests use:
```
nosetests -s
```For the frontend tests:
```
cd {PROJECT_ROOT}/api/static/js/custom
npm test (or yarn test)
```