emotionLoop/jsCode

View on GitHub
boot/local.sample.js

Summary

Maintainability
A
0 mins
Test Coverage

// # local config (make sure it is ignored by git)
//
// This configuration file is specific to each developer's environment,
// and will merge on top of all other settings from ./config.js
// (but only will merge in development environment)
//

exports = module.exports = function() {
  return {
    cache: false,
    server: {
      host: '0.0.0.0',
      port: 3000
    }
  };
};

exports['@singleton'] = true;