mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
82 lines
2.7 KiB
TypeScript
Executable File
82 lines
2.7 KiB
TypeScript
Executable File
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';
|
|
|
|
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,
|
|
},
|
|
});
|
|
|
|
// connect to the database.
|
|
await PostgresAppInstance.connect(
|
|
PostgresAppInstance.getDatasourceOptions()
|
|
);
|
|
|
|
// connect redis
|
|
await Redis.connect();
|
|
|
|
await ClickhouseAppInstance.connect(
|
|
ClickhouseAppInstance.getDatasourceOptions()
|
|
);
|
|
|
|
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;
|
|
}
|
|
};
|
|
|
|
init().catch((err: Error) => {
|
|
logger.error(err);
|
|
logger.error('Exiting node process');
|
|
process.exit(1);
|
|
});
|