mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
37 lines
926 B
TypeScript
37 lines
926 B
TypeScript
import App from 'CommonServer/Utils/StartServer';
|
|
import path from 'path';
|
|
import Express, {
|
|
ExpressApplication,
|
|
ExpressRequest,
|
|
ExpressResponse,
|
|
ExpressStatic,
|
|
} from 'CommonServer/Utils/Express';
|
|
import logger from 'CommonServer/Utils/Logger';
|
|
import Port from 'Common/Types/Port';
|
|
|
|
export const APP_NAME: string = 'accounts';
|
|
|
|
const app: ExpressApplication = Express.getExpressApp();
|
|
|
|
app.use(ExpressStatic(path.join(__dirname, 'public')));
|
|
|
|
app.use(`/${APP_NAME}`, ExpressStatic(path.join(__dirname, 'public')));
|
|
|
|
app.get('/*', (_req: ExpressRequest, res: ExpressResponse) => {
|
|
res.sendFile(path.join(__dirname, 'public', 'index.html'));
|
|
});
|
|
|
|
const init: Function = async (): Promise<void> => {
|
|
try {
|
|
// init the app
|
|
await App(APP_NAME, new Port(3106));
|
|
} catch (err) {
|
|
logger.error('App Init Failed:');
|
|
logger.error(err);
|
|
}
|
|
};
|
|
|
|
init();
|
|
|
|
export default app;
|