GitHub Burndown Chart as a Service http://radekstepan.com/burnchart
Go to file
Radek Stepan 9d247206d3 using JSON dates internally and moment for parsing 2014-10-30 22:12:02 -06:00
docs using JSON dates internally and moment for parsing 2014-10-30 22:12:02 -06:00
public more testing 2014-10-29 19:52:58 -06:00
src using JSON dates internally and moment for parsing 2014-10-30 22:12:02 -06:00
test using JSON dates internally and moment for parsing 2014-10-30 22:12:02 -06:00
.gitignore gitignore .grunt temp files 2014-10-26 21:58:07 -06:00
Gruntfile.coffee code coverage 2014-10-28 22:30:42 -06:00
LICENSE switch all deps to browserify 2014-10-26 21:10:41 -06:00
Makefile coverage for lines, reorg todo tasks 2014-10-30 18:36:40 -06:00
README.md using JSON dates internally and moment for parsing 2014-10-30 22:12:02 -06:00
package.json code coverage 2014-10-28 22:30:42 -06:00

README.md

Existing users: The url mapping has been preserved from the original app, we are just using a different domain. If you'd like to use the previous version(s), grab the tags v1, v2.

#burnchart

GitHub Burndown Chart as a service. Answers the question "are my projects on track"?

Build Status Coverage Dependencies License

image

##Features

  1. Running from the browser, apart from GitHub account sign in.
  2. Private repos; sign in with your GitHub account.
  3. Store projects in browser's localStorage.
  4. Off days; specify which days of the week to leave out from ideal burndown progression line.
  5. Trend line; to see if you can make it to the deadline at this pace.
  6. Different point counting strategies; select from 1 issues = 1 point or read size from issue label.

##Configuration

At the moment, there is no ui exposed to change the app settings. You have to edit the src/models/config.coffee file.

An array of days when we are not working where Monday = 1. The ideal progression line won't drop on these days.

"off_days": [ ]

Choose from ONE_SIZE which means each issue is worth 1 point or LABELS where issue labels determine its size.

"points": "ONE_SIZE"

If you specify LABELS above, this is the place to set a regex used to parse a label and extract points size from it. When multiple matching size labels exist, their sum is taken.

"size_label": /^size (\d+)$/

##Build

The app is built using Node. To install dev dependencies:

$ make install

###Development

To create an unminified package with source maps for debugging:

$ make watch

You can then start a local http server with:

$ make serve

To test your changes run:

$ make test

And finally for code coverage:

$ make coverage

There is currently a bug that incorrectly shows code coverage (using blanket.js) for modules that are loaded using proxyquire.

###Production

To make a minified package for production:

$ make build

You can then publish the contents of the public folder to gh-pages branch with:

$ make publish