Accumulates pull requests across multiple Bitbucket instances into a UI for a wall-mounted display.
# Fetch the config file.
$ wget -O config.yaml https://raw.githubusercontent.com/HeathWallace/pr-dashboard/master/example.config.yaml
# Edit the config file to add your instance addresses and auth tokens.
$ vim config.yaml
# Run the app.
$ docker run -d -P -v $(pwd)/config.yaml:/usr/src/app/config.yaml dan1elhughes/pr-dashboard
$ docker run -d -p 30000:3000 -v $(pwd)/config.yaml:/usr/src/app/config.yaml --name pr-dashboard --restart always pr-dashboard
# Clone the repository
$ git clone https://github.com/HeathWallace/pr-dashboard
$ cd pr-dashboard
# Install dependencies
$ npm i
# Start the server
$ npm run server
# Run the Parcel compiler
$ npm start
Then open localhost:3000
in the browser.
Not yet implemented.
Code style is checked using ESLint/Prettier.
$ npm run lint
Maintained by @ShaunBulbrook.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details