2024-06-14 11:09:53 +00:00
|
|
|
import { PromiseVoidFunction } from "Common/Types/FunctionTypes";
|
2024-08-07 21:50:32 +00:00
|
|
|
import Express, { ExpressApplication } from "Common/Server/Utils/Express";
|
|
|
|
import logger from "Common/Server/Utils/Logger";
|
|
|
|
import App from "Common/Server/Utils/StartServer";
|
2019-09-09 13:30:52 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
export const APP_NAME: string = "dashboard";
|
2022-05-25 22:03:45 +00:00
|
|
|
|
|
|
|
const app: ExpressApplication = Express.getExpressApp();
|
|
|
|
|
2024-02-27 15:37:49 +00:00
|
|
|
const init: PromiseVoidFunction = async (): Promise<void> => {
|
2024-06-14 11:09:53 +00:00
|
|
|
try {
|
|
|
|
// init the app
|
|
|
|
await App.init({
|
|
|
|
appName: APP_NAME,
|
|
|
|
port: undefined,
|
|
|
|
isFrontendApp: true,
|
|
|
|
statusOptions: {
|
|
|
|
liveCheck: async () => {},
|
|
|
|
readyCheck: async () => {},
|
|
|
|
},
|
|
|
|
});
|
2024-04-24 16:44:29 +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-11-10 18:50:20 +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
|
|
|
});
|
2022-11-10 18:50:20 +00:00
|
|
|
|
2022-05-13 10:50:24 +00:00
|
|
|
export default app;
|