https://github.com/rossta/afterburn
Cumulative flow diagrams for Trello boards
https://github.com/rossta/afterburn
Last synced: about 1 year ago
JSON representation
Cumulative flow diagrams for Trello boards
- Host: GitHub
- URL: https://github.com/rossta/afterburn
- Owner: rossta
- License: mit
- Created: 2012-07-16T00:13:43.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-12-06T14:31:12.000Z (over 13 years ago)
- Last Synced: 2025-02-15T10:57:01.610Z (about 1 year ago)
- Language: Ruby
- Size: 785 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: MIT-LICENSE
Awesome Lists containing this project
README
# Afterburn
Afterburn is tool for tracking progress of Trello projects.
## Frontend
### Rails 3
You can mount Afterburn on a subpath in your existing Rails 3 app adding this to routes.rb:
```ruby
mount Afterburn::Server => "/afterburn"
```
### TODOS
* Better graph?
* Display Lead Time (LT), where LT is the time that has passed between a given
number of cards (features) in WIP take to reach COMPLETED
* Display Throughput, where throughput is the number of cards that reach
COMPLETED within the given interval
* Display Cycle Time (CT), where CT is the amount of time it take to complete a
card; CT is the inverse of Throughput
* Display WIP Total (WT), where WT is the total number of cards in progress at a given time
* Display Arrival Rate (AR), where AR is the number of cards that move from Backlog to WIP in
a given interval; this informs Little's Law, where WIP = Arrival Rate * Lead Time