mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
31 lines
813 B
TypeScript
31 lines
813 B
TypeScript
import 'ejs';
|
|
import Express, { ExpressApplication } from 'CommonServer/Utils/Express';
|
|
import logger from 'CommonServer/Utils/Logger';
|
|
import App from 'CommonServer/Utils/StartServer';
|
|
import MainAPI from './API/Main';
|
|
import SettingsAPI from './API/Settings';
|
|
|
|
const app: ExpressApplication = Express.getExpressApp();
|
|
|
|
const APP_NAME: string = 'test-server';
|
|
|
|
app.use([`/${APP_NAME}`, '/'], MainAPI);
|
|
app.use([`/${APP_NAME}`, '/'], SettingsAPI);
|
|
|
|
const init: () => Promise<void> = 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);
|
|
});
|