oneuptime/Identity/Index.ts
Simon Larsen 1ea6362171
fix lint.
2023-03-06 11:35:33 +00:00

38 lines
1.1 KiB
TypeScript

import 'ejs';
import { PostgresAppInstance } from 'CommonServer/Infrastructure/PostgresDatabase';
import Express, { ExpressApplication } from 'CommonServer/Utils/Express';
import logger from 'CommonServer/Utils/Logger';
import App from 'CommonServer/Utils/StartServer';
import AuthenticationAPI from './API/Authentication';
import SsoAPI from './API/SSO';
import StatusPageAuthenticationAPI from './API/StatusPageAuthentication';
const app: ExpressApplication = Express.getExpressApp();
const APP_NAME: string = 'identity';
app.use([`/${APP_NAME}`, '/'], AuthenticationAPI);
app.use([`/${APP_NAME}`, '/'], SsoAPI);
app.use(
[`/${APP_NAME}/status-page`, '/staus-page'],
StatusPageAuthenticationAPI
);
const init: Function = async (): Promise<void> => {
try {
// init the app
await App(APP_NAME);
// connect to the database.
await PostgresAppInstance.connect(
PostgresAppInstance.getDatasourceOptions()
);
} catch (err) {
logger.error('App Init Failed:');
logger.error(err);
}
};
init();