serve.js 487 Bytes
/**
 * React Starter Kit (http://www.reactstarterkit.com/)
 *
 * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE.txt file in the root directory of this source tree.
 */


import app from '../server/app';
/**
 * Launches Node.js/Express web server in a separate (forked) process.
 */


function serve() { 
	return new Promise((resolve, reject) => {
		resolve(app);
	}); 
}

export default serve;