thywill
Version:
A Node.js clustered framework for single page web applications based on asynchronous messaging.
24 lines (18 loc) • 609 B
JavaScript
/**
* @fileOverview
* A base configuration for testing Thywill.
*
* This uses in-memory implementations and does not require a Redis server to
* be present.
*/
var config = require('../../serverConfig/thywill/baseThywillConfig');
// The port to listen on.
config.thywill.ports = {
alpha: 10079
};
// Local cluster member ID, to match up to the port.
config.cluster.localClusterMemberId = 'alpha';
//-----------------------------------------------------------
// Exports - Configuration
//-----------------------------------------------------------
module.exports = config;