Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/infrablocks/planespotter
Concourse events in cc.xml
https://github.com/infrablocks/planespotter
api concourse concourse-ci docker docker-image infrablocks service
Last synced: about 2 months ago
JSON representation
Concourse events in cc.xml
- Host: GitHub
- URL: https://github.com/infrablocks/planespotter
- Owner: infrablocks
- License: mit
- Created: 2017-08-09T21:41:48.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T14:41:05.000Z (2 months ago)
- Last Synced: 2024-10-28T17:26:34.558Z (2 months ago)
- Topics: api, concourse, concourse-ci, docker, docker-image, infrablocks, service
- Language: JavaScript
- Homepage:
- Size: 1.3 MB
- Stars: 4
- Watchers: 10
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Planes Spotter
## Docker image
https://hub.docker.com/r/infrablocks/planespotter- v5.0.0 add support for concourse 6.0.0 and above
- v4.0.0 add support for concourse 4.0.0 and above## Needs:
URL [concourse URL, example: https://ci.server]
AUTH_USERNAME/AUTH_PASSWORD [basic auth credentials]
TEAM [concourse team name. Default: main]
## Concourse job stats on:
http://localhost:3000/cc.xml
## Concourse job stats in JSON on:
http://localhost:3000/job-stats.json
## Concourse job stats with input resources in JSON on:
http://localhost:3000/job-stats.json?resources=inputs## Contribute
### Tests
npm test
### Set up
[Using node v10.10.0 (npm v6.4.1)]
npm install### Start app:
npm start### Start in debug mode:
NODE_ENV=production nodemon src/app.js
### Start with docker:
docker build . -t planespotter
docker run --rm -e TEAM -e URL -e AUTH_USERNAME -e AUTH_PASSWORD -p 3000:3000 -t planespotter