728c56261d
WIP #752 Updated config.local.js setting
13 linhas
318 B
JavaScript
13 linhas
318 B
JavaScript
// Config for running deepforge w/ one local worker
|
|
// jshint node: true
|
|
'use strict';
|
|
|
|
var config = require('./config.default'),
|
|
validateConfig = require('webgme/config/validator');
|
|
|
|
// Turn up the worker polling rate
|
|
config.executor.workerRefreshInterval = 150;
|
|
|
|
validateConfig(config);
|
|
module.exports = config;
|