GitHub Burndown Chart as a Service http://radekstepan.com/burnchart
Go to file
Radek Stepan e9f611652f serve through npm, dev and gh-pages; closes #106 2016-01-26 12:17:40 +01:00
-old- move styles 2016-01-12 15:14:19 +01:00
bin serve through npm, dev and gh-pages; closes #106 2016-01-26 12:17:40 +01:00
public optimize makefile 2016-01-21 23:57:53 +01:00
src reorg 2016-01-21 15:55:18 +01:00
test reorg 2016-01-21 15:55:18 +01:00
.babelrc skeleton with latest React 2016-01-12 14:55:48 +01:00
.gitignore skeleton with latest React 2016-01-12 14:55:48 +01:00
.nvmrc skeleton with latest React 2016-01-12 14:55:48 +01:00
Makefile serve through npm, dev and gh-pages; closes #106 2016-01-26 12:17:40 +01:00
README.md serve through npm, dev and gh-pages; closes #106 2016-01-26 12:17:40 +01:00
index.html serve through npm, dev and gh-pages; closes #106 2016-01-26 12:17:40 +01:00
package.json serve through npm, dev and gh-pages; closes #106 2016-01-26 12:17:40 +01:00

README.md

#burnchart

##Quickstart

$ npm install burnchart -g
$ burnchart --port 8080
# burnchart/3.0.0 started on port 8080

##Development

To run your local version of the app, install all the NPM dependencies, watch the source files in one window, and start the static file server in the other in --dev mode.

$ nvm use
$ npm install
$ make watch
$ make start --dev
# burnchart/3.0.0 (dev) started on port 8080

###GitHub Pages

To serve the app from GitHub Pages that are in sync with master branch, add these two lines to .git/config, in the [remote "origin"] section:

[remote "origin"]
  fetch = +refs/heads/*:refs/remotes/origin/*
  url = git@github.com:user/repo.git
  push = +refs/heads/master:refs/heads/gh-pages
  push = +refs/heads/master:refs/heads/master