Skip to content

Commit

Permalink
Merge pull request #14 from nicoespeon/serve-as-public-service
Browse files Browse the repository at this point in the history
Serve as public service. Fixes #11.
  • Loading branch information
nicoespeon committed May 24, 2016
2 parents ac33786 + a26f501 commit c6833a2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

# TKAT (Trello Kanban Analysis Tool)

A JavaScript library to analyse Kanban metrics from a Trello board.
A JavaScript library to analyze Kanban metrics from a Trello board.

Here is [the online application](http://www.nicoespeon.com/trello-kanban-analysis-tool/).

![TKAT - Cycle Times](https://cdn-images-1.medium.com/max/1600/1*w013ZiO5dqFOxUwFXBOwVA.png)
![TKAT - CFD](https://cdn-images-1.medium.com/max/1600/1*Vrh8lfC_u58NwMmK1OElCw.png)
Expand All @@ -22,7 +24,9 @@ If you are curious about the context and Trello-Kanban stuff, [I wrote a whole p

## How to use it

Let's suppose you've got [node.js](https://nodejs.org) and [npm](https://www.npmjs.com/) installed.
As a user, you can simply go with [the online application](http://www.nicoespeon.com/trello-kanban-analysis-tool/).

If you want to run it locally, let's suppose you've got [node.js](https://nodejs.org) and [npm](https://www.npmjs.com/) installed.

- Clone the repo: `git clone git://github.com/nicoespeon/trello-kanban-analysis-tool.git`
- Install dependencies: `npm install`
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"lint": "node_modules/.bin/eslint app",
"unit-test": "node_modules/.bin/babel-tape-runner app/**/*-test.js",
"unit-test-diff": "npm run unit-test | node_modules/.bin/tap-diff",
"test": "npm run lint && npm run unit-test"
"test": "npm run lint && npm run unit-test",
"release": "npm test && rm -rf public && brunch b -p && touch public/.nojekyll",
"deploy": "npm run release && (cd public && git init && git add . && git commit -m \"Deploy to GitHub Pages\" && git push --force \"git@github.com:nicoespeon/trello-kanban-analysis-tool.git\" master:gh-pages)"
},
"dependencies": {
"@cycle/core": "6.0.3",
Expand Down

0 comments on commit c6833a2

Please sign in to comment.