Summary: UDS will be removed. The first step would be to remove the TCP optionality. Reviewed By: passy Differential Revision: D48264741 fbshipit-source-id: ca9e1b68be61e99240e95bcd4f26f2db63a64005
170 lines
5.4 KiB
TypeScript
170 lines
5.4 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
|
|
*/
|
|
|
|
const dotenv = require('dotenv').config();
|
|
import chalk from 'chalk';
|
|
import path from 'path';
|
|
import {
|
|
compileServerMain,
|
|
launchServer,
|
|
prepareDefaultPlugins,
|
|
} from './build-utils';
|
|
import isFB from './isFB';
|
|
import yargs from 'yargs';
|
|
import ensurePluginFoldersWatchable from './ensurePluginFoldersWatchable';
|
|
import {Watchman} from 'flipper-pkg-lib';
|
|
import fs from 'fs-extra';
|
|
|
|
const argv = yargs
|
|
.usage('yarn flipper-server [args]')
|
|
.options({
|
|
'plugin-marketplace': {
|
|
describe:
|
|
'Enable plugin marketplace - ability to install plugins from NPM or other sources. Without the flag Flipper will only show default plugins. The flag is disabled by default in dev mode. Env var FLIPPER_NO_PLUGIN_MARKETPLACE is equivalent to the command-line option "--no-plugin-marketplace"',
|
|
type: 'boolean',
|
|
},
|
|
'plugin-auto-update-interval': {
|
|
describe:
|
|
'[FB-internal only] Set custom interval in milliseconds for plugin auto-update checks. Env var FLIPPER_PLUGIN_AUTO_UPDATE_POLLING_INTERVAL is equivalent to this command-line option.',
|
|
type: 'number',
|
|
},
|
|
'enabled-plugins': {
|
|
describe:
|
|
'Load only specified plugins and skip loading rest. This is useful when you are developing only one or few plugins. Plugins to load can be specified as a comma-separated list with either plugin id or name used as identifier, e.g. "--enabled-plugins network,inspector". The flag is not provided by default which means that all plugins loaded.',
|
|
type: 'array',
|
|
},
|
|
'public-build': {
|
|
describe:
|
|
'[FB-internal only] Will force using public sources only, to be able to iterate quickly on the public version. If sources are checked out from GitHub this is already the default. Setting env var "FLIPPER_FORCE_PUBLIC_BUILD" is equivalent.',
|
|
type: 'boolean',
|
|
},
|
|
channel: {
|
|
description: 'Release channel for the build',
|
|
choices: ['stable', 'insiders'],
|
|
default: 'stable',
|
|
},
|
|
})
|
|
.version('DEV')
|
|
.help()
|
|
.parse(process.argv.slice(1));
|
|
|
|
if (isFB) {
|
|
process.env.FLIPPER_FB = 'true';
|
|
}
|
|
|
|
process.env.FLIPPER_RELEASE_CHANNEL = argv.channel;
|
|
|
|
if (argv['public-build'] === true) {
|
|
// we use a separate env var for forced_public builds, since
|
|
// FB_FLIPPER / isFB reflects whether we are running on FB sources / infra
|
|
// so changing that will not give the desired result (e.g. incorrect resolve paths, yarn installs)
|
|
// this variable purely overrides whether imports are from `fb` or `fb-stubs`
|
|
console.log('🐬 Emulating open source build of Flipper');
|
|
process.env.FLIPPER_FORCE_PUBLIC_BUILD = 'true';
|
|
} else if (argv['public-build'] === false) {
|
|
delete process.env.FLIPPER_FORCE_PUBLIC_BUILD;
|
|
}
|
|
|
|
// By default plugin marketplace is disabled in dev mode,
|
|
// but it is possible to enable it using this command line
|
|
// argument or env var.
|
|
if (argv['plugin-marketplace'] === true) {
|
|
delete process.env.FLIPPER_NO_PLUGIN_MARKETPLACE;
|
|
} else {
|
|
process.env.FLIPPER_NO_PLUGIN_MARKETPLACE = 'true';
|
|
}
|
|
|
|
if (argv['plugin-auto-update-interval']) {
|
|
process.env.FLIPPER_PLUGIN_AUTO_UPDATE_POLLING_INTERVAL = `${argv['plugin-auto-update-interval']}`;
|
|
}
|
|
|
|
if (argv['enabled-plugins'] !== undefined) {
|
|
process.env.FLIPPER_ENABLED_PLUGINS = argv['enabled-plugins'].join(',');
|
|
}
|
|
|
|
let startCount = 0;
|
|
|
|
async function copyStaticResources() {
|
|
console.log(`⚙️ Copying necessary static resources`);
|
|
const staticDir = path.resolve(__dirname, '..', 'static');
|
|
|
|
await fs.copy(
|
|
path.join(staticDir, 'manifest.template.json'),
|
|
path.join(staticDir, 'manifest.json'),
|
|
);
|
|
}
|
|
|
|
async function restartServer() {
|
|
try {
|
|
await compileServerMain(true);
|
|
await launchServer(true, ++startCount === 1); // only open on the first time
|
|
} catch (e) {
|
|
console.error(
|
|
chalk.red(
|
|
'Failed to compile or launch server, waiting for additional changes...',
|
|
),
|
|
e,
|
|
);
|
|
}
|
|
}
|
|
|
|
async function startWatchChanges() {
|
|
try {
|
|
const watchman = new Watchman(path.resolve(__dirname, '..'));
|
|
await watchman.initialize();
|
|
// We only watch for changes that might affect the server.
|
|
// For UI changes, Metro / hot module reloading / fast refresh take care of the changes
|
|
await Promise.all(
|
|
[
|
|
'doctor',
|
|
'pkg-lib',
|
|
'plugin-lib',
|
|
'flipper-common',
|
|
'flipper-frontend-core',
|
|
'flipper-plugin-core',
|
|
'flipper-server-companion',
|
|
'flipper-server-core',
|
|
'flipper-server',
|
|
].map((dir) =>
|
|
watchman.startWatchFiles(
|
|
dir,
|
|
() => {
|
|
restartServer();
|
|
},
|
|
{
|
|
excludes: [
|
|
'**/__tests__/**/*',
|
|
'**/node_modules/**/*',
|
|
'**/.*',
|
|
'**/lib/**/*',
|
|
'**/dist/**/*',
|
|
],
|
|
},
|
|
),
|
|
),
|
|
);
|
|
} catch (err) {
|
|
console.error('Failed to start watching for changes using Watchman', err);
|
|
}
|
|
}
|
|
|
|
(async () => {
|
|
if (dotenv && dotenv.parsed) {
|
|
console.log('✅ Loaded env vars from .env file: ', dotenv.parsed);
|
|
}
|
|
await prepareDefaultPlugins(
|
|
process.env.FLIPPER_RELEASE_CHANNEL === 'insiders',
|
|
);
|
|
|
|
await copyStaticResources();
|
|
await ensurePluginFoldersWatchable();
|
|
await restartServer();
|
|
await startWatchChanges();
|
|
})();
|