Skip to content

Commit

Permalink
Added basic structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ezraroi committed Nov 21, 2014
1 parent 221f36b commit ada6600
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
8 changes: 8 additions & 0 deletions lib/configuration_updater/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

var pkg = require('../../package.json');
var winston = require('winston');

winston.log('info','Configuration Updater started @ %s',new Date().toString());


11 changes: 11 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

'use strict';

var winston = require('winston');
var pkg = require('../package.json');
var child_process = require('child_process');
var monitor_runner = require('../lib/monitor_runner');
var configuration_updater = require('../lib/configuration_updater');

winston.info('Codeine Peer - ' + pkg.version);

8 changes: 8 additions & 0 deletions lib/monitor_runner/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

var pkg = require('../../package.json');
var winston = require('winston');

winston.log('info','Monitor Runner started @ %s',new Date().toString());


10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,20 @@
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-exec": "~0.4.2",
"load-grunt-tasks": "~0.6.0"
"load-grunt-tasks": "~0.6.0",
"mocha": "^2.0.1"
},
"scripts": {
"test": "grunt test"
},
"bin": {
"codeine": "bin/codeine"
},
"dependencies": {
"async": "^0.9.0",
"minimist": "^1.1.0",
"request": "^2.48.0",
"underscore": "^1.7.0",
"winston": "^0.8.3"
}
}

0 comments on commit ada6600

Please sign in to comment.