A GitHub Api backed Milestone thingy
git clone [email protected]:gr2m/milestones.git
cd milestones
npm install
bower install
grunt serve
This is a static HTML5 app that loads issues from a repo right from the GitHub API.
The repo is currently hardcoded in src/js/app.js
, but can easily
be changed by changing repoUrl = 'https://github.com/gr2m/milestones'
as you like.
For performance reasons, the response to the GitHub API is cached locally. That way the app can be shown right after page load. Once the request is finished, the local cache gets updated and the app will be rerendered.
The app has a few assumptions on milestones, issues & labels of the repo.
-
All Milestones set their owner in the first line of their description. The actual description is then separated by
---
. Here is an exampleowner: gr2m --- Actual Description here
-
All Milestones will be sorted alphabetically. You can prefix the milestone titles with numbers and a space, e.g.
01 My First Milestone
. The01
part will automatically be removed -
To mark an issue as active, add the
active
label. -
To add efforts to issues, create labels that must start with a number, like
1 easy
or3 hard
. Add only one effort-label per issue.
- allow to dynamically pass another github repo url
- make it work offline
Milestones have been authored by Gregor Martynus, proud member of the Hoodie Community.
License: MIT