oneuptime/App/Index.ts

82 lines
2.5 KiB
TypeScript
Raw Normal View History

import APIReferenceRoutes from "./FeatureSet/ApiReference/Index";
import BaseAPIRoutes from "./FeatureSet/BaseAPI/Index";
import DocsRoutes from "./FeatureSet/Docs/Index";
import HomeRoutes from "./FeatureSet/Home/Index";
// import FeatureSets.
import IdentityRoutes from "./FeatureSet/Identity/Index";
import NotificationRoutes from "./FeatureSet/Notification/Index";
import Workers from "./FeatureSet/Workers/Index";
import Workflow from "./FeatureSet/Workflow/Index";
import { PromiseVoidFunction } from "Common/Types/FunctionTypes";
import { ClickhouseAppInstance } from "CommonServer/Infrastructure/ClickhouseDatabase";
import { PostgresAppInstance } from "CommonServer/Infrastructure/PostgresDatabase";
import Redis from "CommonServer/Infrastructure/Redis";
import InfrastructureStatus from "CommonServer/Infrastructure/Status";
import logger from "CommonServer/Utils/Logger";
import Realtime from "CommonServer/Utils/Realtime";
import App from "CommonServer/Utils/StartServer";
import "CommonServer/Utils/Telemetry";
import "ejs";
2022-07-07 19:42:19 +00:00
process.env["SERVICE_NAME"] = "app";
const init: PromiseVoidFunction = async (): Promise<void> => {
try {
const statusCheck: PromiseVoidFunction = async (): Promise<void> => {
return await InfrastructureStatus.checkStatus({
checkClickhouseStatus: true,
checkPostgresStatus: true,
checkRedisStatus: true,
});
};
// init the app
await App.init({
appName: process.env["SERVICE_NAME"] || "app",
statusOptions: {
liveCheck: statusCheck,
readyCheck: statusCheck,
},
});
2023-10-27 15:17:28 +00:00
// connect to the database.
await PostgresAppInstance.connect(
PostgresAppInstance.getDatasourceOptions(),
);
2022-07-14 13:34:48 +00:00
// connect redis
await Redis.connect();
2023-08-19 19:49:24 +00:00
await ClickhouseAppInstance.connect(
ClickhouseAppInstance.getDatasourceOptions(),
);
2023-11-16 17:16:37 +00:00
await Realtime.init();
// init featuresets
await IdentityRoutes.init();
await NotificationRoutes.init();
await DocsRoutes.init();
await BaseAPIRoutes.init();
await APIReferenceRoutes.init();
await Workers.init();
await Workflow.init();
// home should be in the end because it has the catch all route.
await HomeRoutes.init();
// add default routes
await App.addDefaultRoutes();
} catch (err) {
logger.error("App Init Failed:");
logger.error(err);
throw err;
}
2022-07-07 19:42:19 +00:00
};
2023-08-10 18:00:27 +00:00
init().catch((err: Error) => {
logger.error(err);
logger.error("Exiting node process");
process.exit(1);
2023-08-10 18:00:27 +00:00
});