https://github.com/angular/angular-prs
app to visualize PR queue activity for the angular.js project. currently the data is stored in the repo because of github query rate limits.
https://github.com/angular/angular-prs
Last synced: 9 months ago
JSON representation
app to visualize PR queue activity for the angular.js project. currently the data is stored in the repo because of github query rate limits.
- Host: GitHub
- URL: https://github.com/angular/angular-prs
- Owner: angular
- Archived: true
- Created: 2013-07-29T21:10:01.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2015-02-27T20:53:21.000Z (over 11 years ago)
- Last Synced: 2024-09-26T11:03:55.470Z (almost 2 years ago)
- Language: ApacheConf
- Homepage: http://angular.github.io/angular-prs/
- Size: 20.6 MB
- Stars: 8
- Watchers: 7
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AngularJS PR TimeSeries Graph
This project collects and displays chart to show how well we are doing on
dealing with Pull Requests in the AngularJS project.
## Usage
```bash
git clone https://github.com/angular/angular-prs
cd angular-prs
npm install
bower install
grunt build
grunt server
```
## Fetching new data
You will need a GitHub API client_id and client_secret to run the fetch script
```bash
cd app/data
./fetch.sh CLIENT_ID CLIENT_SECRET
grunt build
```
## Publishing
Once you have fetched a new set of data you can publish it to the GitHub pages:
```bash
cd angular-prs
./deploy.sh
```