mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
29 lines
670 B
TypeScript
29 lines
670 B
TypeScript
|
|
||
|
import Express, { ExpressApplication } from 'CommonServer/Utils/Express';
|
||
|
import logger from 'CommonServer/Utils/Logger';
|
||
|
import App from 'CommonServer/Utils/StartServer';
|
||
|
import process from 'process';
|
||
|
|
||
|
const app: ExpressApplication = Express.getExpressApp();
|
||
|
|
||
|
const APP_NAME: string = 'isolated-vm';
|
||
|
|
||
|
|
||
|
const init: PromiseVoidFunction = async (): Promise<void> => {
|
||
|
try {
|
||
|
// init the app
|
||
|
await App(APP_NAME);
|
||
|
|
||
|
} catch (err) {
|
||
|
logger.error('App Init Failed:');
|
||
|
logger.error(err);
|
||
|
throw err;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
init().catch((err: Error) => {
|
||
|
logger.error(err);
|
||
|
logger.info('Exiting node process');
|
||
|
process.exit(1);
|
||
|
});
|