https://github.com/pmsipilot/dashboard
https://github.com/pmsipilot/dashboard
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pmsipilot/dashboard
- Owner: pmsipilot
- License: mit
- Created: 2017-03-17T08:51:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-11T09:43:37.000Z (over 6 years ago)
- Last Synced: 2025-01-14T02:12:45.237Z (5 months ago)
- Language: JavaScript
- Size: 4.19 MB
- Stars: 1
- Watchers: 14
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dashboard
Dashboard provides an interface to monitor "Jenkins" job's status for continuous integration.

## Prerequisites
* [Docker](https://docs.docker.com/)
* [npm](https://www.npmjs.com/get-npm)
* [NodeJS](https://nodejs.org/en/)## Getting started
```
$ git clone https://github.com/pmsipilot/dashboard.git
$ cd dashboard/
```This task will create the docker image for the dashboard, install js dependencies and build css
```
$ make docker
```**Alternative**
You can pull the image from the [Docker Hub](https://hub.docker.com/r/pmsipilot/dashboard/)
```
$ docker pull pmsipilot/dashboard
```---
This command will launch a container from the docker image previously created in detached mode. That way, it is possible to update the code without having to rebuild the container to test it.
```
$ docker run -p 8080:3000 --name dashboard --rm -it dashboard-image
```The application is available at the following URL : [http://localhost:8080](http://localhost:8080)
## License
This project is released under the [MIT license](LICENSE)