Skip to content

Commit

Permalink
#105 commit unminified files
Browse files Browse the repository at this point in the history
  • Loading branch information
radekstepan committed Jan 11, 2016
1 parent 490c7b0 commit 8de66eb
Show file tree
Hide file tree
Showing 6 changed files with 49,894 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Expand Up @@ -3,10 +3,8 @@ node_modules/
.build_cache~
.grunt/
build/*.map
public/js/app.bundle.js
public/js/.app.bundle.js
public/js/app.js
public/css/app.bundle.css
public/css/.app.bundle.css
public/css/app.css
.DS_Store
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,7 @@ GitHub Burndown Chart as a Service. Answers the question "are my projects on tra
```bash
$ npm install burnchart -g
$ burnchart 8080
# burnchart/2.0.8 started on http://0.0.0.0:8080
# burnchart/2.0.8 started on port 8080
```

##Configuration
Expand Down
5 changes: 3 additions & 2 deletions bin/run.js
Expand Up @@ -2,6 +2,7 @@
var stat = require('node-static'),
path = require('path'),
http = require('http'),
exec = require('child_process').exec,
pakg = require('../package.json');

var opts = {
Expand All @@ -20,5 +21,5 @@ var server = http.createServer(function(req, res) {

server.on('listening', function() {
var addr = server.address();
console.log('burnchart/' + pakg.version + ' started on http://' + addr.address + ':' + addr.port);
});
console.log('burnchart/' + pakg.version + ' started on port ' + addr.port);
});
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "burnchart",
"version": "2.0.9",
"version": "2.0.10",
"description": "GitHub Burndown Chart as a Service",
"author": "Radek Stepan <dev@radekstepan.com> (http://radekstepan.com)",
"license": "AGPL-3.0",
Expand Down

0 comments on commit 8de66eb

Please sign in to comment.