2024-06-14 11:09:53 +00:00
|
|
|
import APIReferenceRoutes from "./FeatureSet/ApiReference/Index";
|
|
|
|
import BaseAPIRoutes from "./FeatureSet/BaseAPI/Index";
|
|
|
|
import DocsRoutes from "./FeatureSet/Docs/Index";
|
|
|
|
import HomeRoutes from "./FeatureSet/Home/Index";
|
2024-04-24 11:20:04 +00:00
|
|
|
// import FeatureSets.
|
2024-06-14 11:09:53 +00:00
|
|
|
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
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
process.env["SERVICE_NAME"] = "app";
|
2023-12-28 19:57:21 +00:00
|
|
|
|
2024-02-27 15:37:49 +00:00
|
|
|
const init: PromiseVoidFunction = async (): Promise<void> => {
|
2024-06-14 11:09:53 +00:00
|
|
|
try {
|
|
|
|
const statusCheck: PromiseVoidFunction = async (): Promise<void> => {
|
|
|
|
return await InfrastructureStatus.checkStatus({
|
|
|
|
checkClickhouseStatus: true,
|
|
|
|
checkPostgresStatus: true,
|
|
|
|
checkRedisStatus: true,
|
|
|
|
});
|
|
|
|
};
|
2024-04-24 13:02:17 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// 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
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// connect to the database.
|
|
|
|
await PostgresAppInstance.connect(
|
|
|
|
PostgresAppInstance.getDatasourceOptions(),
|
|
|
|
);
|
2022-07-14 13:34:48 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// connect redis
|
|
|
|
await Redis.connect();
|
2023-08-19 19:49:24 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
await ClickhouseAppInstance.connect(
|
|
|
|
ClickhouseAppInstance.getDatasourceOptions(),
|
|
|
|
);
|
2023-11-16 17:16:37 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
await Realtime.init();
|
2024-01-11 10:55:58 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// init featuresets
|
|
|
|
await IdentityRoutes.init();
|
|
|
|
await NotificationRoutes.init();
|
|
|
|
await DocsRoutes.init();
|
|
|
|
await BaseAPIRoutes.init();
|
|
|
|
await APIReferenceRoutes.init();
|
|
|
|
await Workers.init();
|
|
|
|
await Workflow.init();
|
2024-04-24 11:20:04 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// home should be in the end because it has the catch all route.
|
|
|
|
await HomeRoutes.init();
|
2024-04-24 11:20:04 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// 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
|
|
|
};
|
2021-04-01 08:26:13 +00:00
|
|
|
|
2023-08-10 18:00:27 +00:00
|
|
|
init().catch((err: Error) => {
|
2024-06-14 11:09:53 +00:00
|
|
|
logger.error(err);
|
|
|
|
logger.error("Exiting node process");
|
|
|
|
process.exit(1);
|
2023-08-10 18:00:27 +00:00
|
|
|
});
|