Summary: This changes moves most of the functionality found in flipper-server to flipper-server-core. flipper-server will mostly be a package that wraps around flipper-server-core. Staying in flipper-server: - Command line args - Orchestration to start the necessary servers Reviewed By: aigoncharov Differential Revision: D36807087 fbshipit-source-id: f29002c7cc5d08b8c5184fdaaa02ba22562a9f45
24 lines
843 B
TypeScript
24 lines
843 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
export {FlipperServerImpl} from './FlipperServerImpl';
|
|
export {loadSettings} from './utils/settings';
|
|
export {loadLauncherSettings} from './utils/launcherSettings';
|
|
export {loadProcessConfig} from './utils/processConfig';
|
|
export {getEnvironmentInfo} from './utils/environmentInfo';
|
|
export * from './utils/tail';
|
|
export {getGatekeepers} from './gk';
|
|
export {setupPrefetcher} from './fb-stubs/Prefetcher';
|
|
export * from './server/attachSocketServer';
|
|
export * from './server/startFlipperServer';
|
|
export * from './server/startServer';
|
|
export * from './server/utilities';
|
|
|
|
export {WEBSOCKET_MAX_MESSAGE_SIZE} from './comms/ServerWebSocket';
|