https://github.com/ashwanthkumar/gocd-build-badge-server
Build Badge for your GoCD builds
https://github.com/ashwanthkumar/gocd-build-badge-server
Last synced: about 1 year ago
JSON representation
Build Badge for your GoCD builds
- Host: GitHub
- URL: https://github.com/ashwanthkumar/gocd-build-badge-server
- Owner: ashwanthkumar
- Created: 2015-11-09T17:38:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-02T02:52:48.000Z (over 8 years ago)
- Last Synced: 2025-03-25T14:51:17.140Z (over 1 year ago)
- Language: JavaScript
- Size: 58.6 KB
- Stars: 7
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gocd-build-badge-server
Simple NodeJS app to store your pipeline passed / failed status so that we could generate a build badge for your Private Github repos.
## Build Badges
Depending on the last known status of the pipeline you could get any of the following badges



## Dependencies
- NodeJS
- Redis (you need a verified account on Heroku for this)
[](https://heroku.com/deploy)
## Running Locally
Make sure you have [Node.js](http://nodejs.org/) and the [Heroku Toolbelt](https://toolbelt.heroku.com/) installed.
```sh
$ git clone git@github.com:ashwanthkumar/gocd-build-badge-server.git # or clone your own fork
$ cd gocd-build-badge-server
$ npm install
$ npm run dev
```
Your app should now be running on [localhost:5000](http://localhost:5000/).
## Deploying to Heroku
```
$ heroku create
$ heroku addons:create heroku-redis:hobby-dev
$ git push heroku master
$ heroku open
```