UNPKG

@cocalc/project

Version:
25 lines (20 loc) 810 B
/* * This file is part of CoCalc: Copyright © 2022 Sagemath, Inc. * License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details */ /* Initialize both the hub and browser servers. */ import { getLogger } from "@cocalc/project/logger"; import initPidFile from "./pid-file"; import initSecretToken from "./secret-token"; import initAPIServer from "@cocalc/project/http-api/server"; import initBrowserServer from "./browser/http-server"; import initHubServer from "./hub/tcp-server"; const winston = getLogger("init-project-server"); export default async function init() { winston.info("Write pid file to disk."); await initPidFile(); await initSecretToken(); // must be before servers, since they use this. await initAPIServer(); await initBrowserServer(); await initHubServer(); }