Summary: This change gives priority to a user option settingsString to set up the flipper-server configuration and load them from a json string. Also giving the user the chance to avoid flipper-server looking at the launcher config files in the computer Reviewed By: mweststrate Differential Revision: D34210110 fbshipit-source-id: 9e852b79da106b5140c59116fd7d0c0f3155e620
121 lines
3.1 KiB
TypeScript
121 lines
3.1 KiB
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
|
|
*/
|
|
|
|
import process from 'process';
|
|
import chalk from 'chalk';
|
|
import path from 'path';
|
|
import {startFlipperServer} from './startFlipperServer';
|
|
import {startBaseServer} from './startBaseServer';
|
|
import {startSocketServer} from './startSocketServer';
|
|
import {startWebServerDev} from './startWebServerDev';
|
|
|
|
import yargs from 'yargs';
|
|
import open from 'open';
|
|
import {sleep} from 'flipper-common';
|
|
|
|
const argv = yargs
|
|
.usage('yarn flipper-server [args]')
|
|
.options({
|
|
port: {
|
|
describe: 'Port to serve on',
|
|
type: 'number',
|
|
default: 52342,
|
|
},
|
|
bundler: {
|
|
describe:
|
|
'Serve the UI bundle from source. This option only works for source checkouts',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
open: {
|
|
describe: 'Open Flipper in the default browser after starting',
|
|
type: 'boolean',
|
|
default: true,
|
|
},
|
|
failFast: {
|
|
describe:
|
|
'Exit the process immediately if the server cannot start, for example due to an incorrect configuration.',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
settingsString: {
|
|
describe: `override the existing defaults settings of flipper (settings.json file) e.g "{"androidHome":"/usr/local/bin","enableAndroid":true}"`,
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
launcherSettings: {
|
|
describe:
|
|
'Open Flipper with the configuration stored in .config folder for the launcher',
|
|
type: 'boolean',
|
|
default: true,
|
|
},
|
|
})
|
|
.version('DEV')
|
|
.help()
|
|
.parse(process.argv.slice(1));
|
|
|
|
console.log(
|
|
`Starting flipper server with ${
|
|
argv.bundler ? 'UI bundle from source' : 'pre-bundled UI'
|
|
}`,
|
|
);
|
|
|
|
const rootDir = argv.bundler
|
|
? path.resolve(__dirname, '..', '..')
|
|
: path.resolve(__dirname, '..'); // in pre packaged versions of the server, static is copied inside the package
|
|
const staticDir = path.join(rootDir, 'static');
|
|
|
|
async function start() {
|
|
// supress debug messages by default. TODO: make CLI flag
|
|
console.debug = function () {
|
|
// Noop
|
|
};
|
|
|
|
const {app, server, socket} = await startBaseServer({
|
|
port: argv.port,
|
|
staticDir,
|
|
entry: 'index.web.dev.html',
|
|
});
|
|
const flipperServer = await startFlipperServer(
|
|
rootDir,
|
|
staticDir,
|
|
argv.settingsString,
|
|
argv.launcherSettings,
|
|
);
|
|
if (argv.failFast) {
|
|
flipperServer.on('server-state', ({state}) => {
|
|
if (state === 'error') {
|
|
process.exit(1);
|
|
}
|
|
});
|
|
}
|
|
await flipperServer.connect();
|
|
|
|
if (argv.bundler) {
|
|
await startWebServerDev(app, server, socket, rootDir);
|
|
}
|
|
startSocketServer(flipperServer, socket);
|
|
}
|
|
|
|
start()
|
|
.then(() => {
|
|
const url = `http://localhost:${argv.port}/index.web${
|
|
argv.bundler ? '.dev' : ''
|
|
}.html`;
|
|
console.log('Flipper server started at ' + chalk.green(chalk.bold(url)));
|
|
if (argv.open) {
|
|
sleep(1000);
|
|
open(url);
|
|
}
|
|
})
|
|
.catch((e) => {
|
|
console.error(chalk.red('Server startup error: '), e);
|
|
process.exit(1);
|
|
});
|