initial commit

This commit is contained in:
Riku Rouvila
2015-01-14 18:14:37 +02:00
commit d9421f9996
13 changed files with 203 additions and 0 deletions

7
lib/config.js Normal file
View File

@@ -0,0 +1,7 @@
'use strict';
var _ = require('lodash');
var config = require('../config.json');
var env = process.env.NODE_ENV || 'development';
module.exports = _.merge({}, config.all, config[env]);