relay/src/index.ts

40 lines
1.0 KiB
TypeScript
Raw Normal View History

2022-09-21 12:59:22 +00:00
import { start as startRpc } from "./modules/rpc.js";
import { start as startRelay } from "./modules/relay.js";
import { start as startApp } from "./modules/app";
import config from "./config.js";
import { getPluginAPI, loadPlugins } from "./modules/plugin.js";
import { start as startSwarm, get as getSwarm } from "./modules/swarm.js";
import * as bip39 from "@scure/bip39";
import { wordlist } from "@scure/bip39/wordlists/english";
2022-07-24 00:24:19 +00:00
if (!config.str("core.seed")) {
2022-12-21 21:12:33 +00:00
config.save("account", {
core: {
seed: bip39.generateMnemonic(wordlist),
},
});
}
async function boot() {
await startSwarm();
await loadPlugins();
await startApp();
2022-09-09 10:18:14 +00:00
await startRpc();
await startRelay();
}
2022-06-27 17:53:00 +00:00
boot();
2022-06-27 17:53:00 +00:00
process.on("uncaughtException", function (err) {
console.log(`Caught exception: ${err.message} ${err.stack}`);
2022-06-27 17:53:00 +00:00
});
async function shutdown() {
await getPluginAPI().emitAsync("core.shutdown");
await getSwarm().destroy();
2022-08-05 04:06:31 +00:00
process.exit();
}
process.on("SIGINT", shutdown);
process.on("SIGTERM", shutdown);