bull-ui-temp
Version:
Front-end web interface for Bull Job Manager with Bull 3.0.0 support
14 lines (12 loc) • 333 B
JavaScript
var app = require('./lib/server');
/**
* @param {Object} options
* @param {Object} [options.redis] optional redis settings (host, port, password).
* Defaults to the development redis settings in ./config
*
*/
module.exports = function(options) {
require('./lib/setupAndMiddleware')(app, options);
return app;
};
;